This is a simple test project to learn how to create a package and upload it to the NPM registry. I learned how to create this package by following this guide written by Marty Jacobs.
Run npm install brads-module
to install this package into your application.
If you're using CommonJS:
const bradsModule = require('brads-module');
bradsModule.printMsg();
If you're using ES Modules:
import * as bradsModule from 'brads-module';
bradsModule.printMsg();