#jnpm-generator
Is a simple npm project generator. Just a lazy way to start npm project.
##For CLI or module projects
- Install your selected npm dependencies
- create your "main" js file
- create README.md with initial content
- Automatically initialize git, and add remote 'origin' read from package.json
- Do initial commit and push
##usage
jnpm init
###Publising to NPM?
jnpm publish
jnpm publish "commit message"
the rest of the commands, you can actually do with jgit
add and commit
jnpm commit
jnpm commit "commit message"
add, commit and push
jnpm push
jnpm push "commit message"
view help
jnpm help
##install
sudo npm install -g jnpm-generator
Directory Structure
.
+-- .gitignore
+-- package.json
+-- .git
| +-- config
| +-- *otherGitStuff*
+-- index.js
+-- README.md