1.1.0 • Published 10 years ago

hajimaru v1.1.0

Weekly downloads
23
License
-
Repository
github
Last release
10 years ago

始まる hajimaru

A project generator for node

npm: https://npmjs.org/package/hajimaru

Install

npm install -g hajimaru

Usage

Usage: hajimaru <project>

Options:

  -h, --help          output usage information
  -V, --version       output the version number
  -c, --coffeescript  enable coffeescript support

Examples

Hello hajimaru!

$ hajimaru hello-hajimaru && cd hello-hajimaru
$ echo "console.log('Hello hajimaru\!');" >> lib/hello_hajimaru.js
$ npm start

Project structure

$ tree -a hello-hajimaru/
hello-hajimaru/
├── .gitignore
├── .npmignore
├── README.md
├── index.js
├── lib
│   └── hello_hajimaru.js
├── package.json
└── test
    └── hello_hajimaru_test.js

2 directories, 7 files

Hello hajimaru! w/ CoffeeScript

$ hajimaru -c hello-hajimaru && cd hello-hajimaru && npm install
$ echo "console.log 'Hello hajimaru\!'" >> lib/hello_hajimaru.coffee
$ npm start

Project structure

$ tree -a hello-hajimaru/
hello-hajimaru/
├── .gitignore
├── .npmignore
├── README.md
├── index.js
├── lib
│   └── hello_hajimaru.coffee
├── package.json
└── test
    └── hello_hajimaru_test.coffee

2 directories, 7 files

License

(The MIT License)

Copyright (c) 2012 Paul Fryzel <paul.fryzel@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.1.0

10 years ago

1.0.0

10 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago