brads-module
v1.0.2
Published
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](https://initialcommit.com/blog/nodejs-module#2-create-a-node-project) written by Marty Jacobs.
Downloads
2
Readme
Brad's Module
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.
Install
Run npm install brads-module
to install this package into your application.
Run
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();