Template for creating new
node_modules
Looking to publish a new Node.js module? Start here!
git@github.com:cezaraugusto/node-module-quick-start.git
- Click the big green "Use this template" button
- Replace
Cezar Augusto
with your name - Replace
cezaraugusto
with your username - Replace
boss@cezaraugusto.net
with your email - Replace
https://cezaraugusto.net
with your URL - Replace
node-module-quick-start
with your module name - HAVE FUN!
Alternatively, you can install this module as-is and hack from there
# node_modules/node-module-quick-start will include this repo
npm install node-module-quick-start
This repo includes a sample program:
const sleepySays = require('./node-module-quick-start')
sleepySays('hello!') // ( o ‿ ~ ✿) hello!
// When sleepy is sleeping
sleepySays('hello!', true) // (◡ ‿ ◡ ✿) zZZz
Type: string
Type: boolean
Default: false
MIT (c) Cezar Augusto.