ajgenesisnode-hello
v0.0.6
Published
AjGenesis for Node, Hello tasks and template
Downloads
4
Maintainers
Readme
AjGenesisNode Hello
AjGenesisNode Hello tasks and templates.
Installation
Install AjGenesis for Node globally and this Hello module using:
npm install -g ajgenesis
npm install -g ajgenesisnode-hello
On Linux, you should use sudo
to install a module globally.
Usage
In a worker directory, run:
ajgenesis hello:create myhello
A myhello
folder is created, with Hello.java
, Hello.vb
, Hello.cs
, Hello.js
. An example:
// Autogenerated with AjGenesis for Node.js
// https://github.com/ajlopez/AjGenesisNode
public class Hello {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
The message generate is Hello world
. Alternatively, execute:
ajgenesis name=Adam hello:create helloadam
to generate other hello message Hello Adam
.
Versions
- 0.0.1: Published
- 0.0.2: Published
- 0.0.3: Published. Module call receives a callback
- 0.0.4: No automated install of hello, use explicitly
npm install -g
;create
instead ofgenerate
- 0.0.5: Install function
- 0.0.6: Using ajgenesis.fs in install task
Contribution
Feel free to file issues and submit pull requests � contributions are welcome.
If you submit a pull request, please be sure to add or update corresponding
test cases, and ensure that npm test
continues to pass.