Package Exports
- nodeclipse
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nodeclipse) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Nodeclipse CLI
#91
Node.js Development with Eclipse or Enide Studio
Install with npm install -g nodeclipse
Usage: just run nodeclipse to add needed .project file to current directory
In Eclipse File -> Import -> General / Existing Projects into Workspace
Check http://www.nodeclipse.org/ on how to get Nodeclipse or Enide Studio
Commands
Usage: nodeclipse [arguments]
Arguments:
-c, --create <name> create project folder and prepare it
-u, --use <template> create project folder (using specified template folder) and prepare it
-p, --prepare prepare for import (default action), i.e. add needed `.project`
and other `.*` files ('.gitignore', '.jshintrc', '.settings/') if there is no `.project` yet
-n, --name [<name>] project name (default is folder name)
-h, --help Check README
-v, --version print nodeclipse CLI's version
-V, --verbose be verbose
Templates are just folders in this project sources:
hello-world The famous hello world HTTP server in 6 lines
hello-coffee The same server written in CoffeeScript
hello-typescript The same server written in TypeScriptOther commands (TODO)
$ nodeclipse -h
Usage: nodeclipse [arguments]
-f, --force force on non-empty directory (by default existing files are not updated)Examples:
'nodeclipse' (without parameters adds .project file to current directory with name as directory name)
nodeclipse --prepare project1
nodeclipse --create project2
nodeclipse --create project3 --use hello-coffee
nodeclipse -c project4 -u hello-coffeeEclipse Workspace and Project
Eclipse Workspace is just folder that contains Eclipse Projects.
Eclipse Projects is just folder with .project file.
Developing Nodeclipse CLI
Project sources are at https://github.com/Nodeclipse/nodeclipse-1 under https://github.com/Nodeclipse/nodeclipse-1/tree/master/org.nodeclipse.ui/templates
https://npmjs.org/doc/developers.html
try with 'npm install . -g' before publishing
Links
The only feature that differentiates a command-line program from a library is the bin field in the package.json file.
http://howtonode.org/how-to-module