blakeembrey / node-language-command

Look up the command for executing a program in any language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Language Command

NPM version Greenkeeper badge

Look up the command for executing a program in any language. Uses the programming language names from language-map and will always generate a command that cleans up after itself (leaves no temporary files) when executed.

Installation

npm install language-command --save

Usage

var command = require('language-command');

command('JavaScript', 'test.js', '"test"');
//=> "node test.js \"test\""

Notes

  • Windows support is likely non-existant. If anyone can help make the repository work across OSes, it'd be greatly appreciated.
  • Should it be possible to set paths to executables?
  • The test directory uses underscores instead of spaces because some command line compilers had trouble with spaces.

License

MIT

About

Look up the command for executing a program in any language

License:MIT License


Languages

Language:JavaScript 100.0%