Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
ronin-coffeescript
Advanced tools
Toolkit for building shining CLI programs in Node.js using coffeescript.
This is the coffeescript fork of Ronin. The original javascript version is Ronin. The changes are to make it work with .coffee files instead of .js. I'm actively using this project so I will do my best to keep it up-to-date with the original project.
I don't use the middleware functionality so I didn't convert that to coffeescript. It uses a named function which we can't really do in coffeescript other than with just plain escaped JS. I'm pretty sure it should work if your middleware files are .js
. If not feel free to submit a pull request to patch that.
npm install ronin-coffeescript --global
Execute the following command to generate basic skeleton for your program:
ronin new hello-world
Ronin will create a hello-world directory (if it does not exists or empty) and put everything that's needed to start developing your CLI tool immediately.
Here's how to initialize CLI program using Ronin:
ronin = require 'ronin'
program = ronin __dirname
program.run()
Next, to setup some commands, simply create folders and files. The structure you create, will be reflected in your program. For example, if you create such folders and files:
commands/
-- apps.coffee
-- apps/
-- add.coffee
-- remove.coffee
-- keys/
-- dump.coffee
In result, Ronin, will generate these commands for you automatically:
$ hello-world apps
$ hello-world apps add
$ hello-world apps remove
$ hello-world keys dump
Each folder is treated like a namespace and each file like a command, where file name is command name.
To actually create handlers for those commands, in each file, Command should be defined:
Command = require('ronin').Command
AppsAddCommand = module.exports = Command.extend
desc: 'This command adds application'
run: (name) ->
// create an app with name given in arguments
To run this command, execute:
$ hello-world apps add great-app
Whatever arguments passed to command after command name, will be passed to .run() method in the same order they were written.
You can specify options and their properties using options object.
AppsDestroyCommand = module.exports = Command.extend
desc: 'This command removes application'
options:
name: 'string'
force:
type: 'boolean'
alias: 'f'
run: (name, force) ->
unless force
throw new Error '--force option is required to remove application'
// remove app
Note: Options will be passed to .run() method in the same order they were defined.
By default, Ronin generates help for each command and for whole program automatically. If you wish to customize the output, override .help() method in your command (program help can not be customized at the moment):
HelloCommand = Command.extend
help: ->
"Usage: #{@programName} #{@name} [OPTIONS]"
desc: 'Hello world'
By default, Ronin separates sub-commands with a space. If you want to change that delimiter, just specify this option when initializing Ronin:
program = ronin()
program.set
path: __dirname
delimiter: ':'
program.run()
After that, apps create
command will become apps:create
.
There are often requirements to perform the same operations/checks for many commands. For example, user authentication. In order to avoid code repetition, Ronin implements middleware concept. Middleware is just a function, that accepts the same arguments as .run() function + callback function. Middleware functions can be asynchronous, it makes no difference for Ronin.
Let's take a look at this example:
var UsersAddCommand = Command.extend({
use: ['auth', 'beforeRun'],
run: function (name) {
// actual users add command
},
beforeRun: function (name, next) {
// will execute before .run()
// MUST call next() when done
next();
}
});
In this example, we've got 2 middleware functions: auth and beforeRun.
Ronin allows you to write middleware functions inside commands or inside root/middleware
directory.
So in this example, Ronin will detect that beforeRun
function is defined inside a command and auth
function will be require
d from root/middleware/auth.js
file.
Note: To interrupt the whole program and stop execution, just throw an error.
npm test
Ronin is released under the MIT License.
FAQs
Libary to build shining CLI tools using coffeescript
We found that ronin-coffeescript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.