jssh-api-jssh
v0.0.12
Published
BASH-like API for jssh
Downloads
6
Readme
BASH-like Synchronous Commands for JavaScript Shell (jssh
)
Future goal of this project is to implement in JavaScript shell commands for usage in jssh
shell.
Currently, this package borrows almost all of its functionality from shelljs
.
This package does not load all the commands from disk on startup but only once the command is actually executed for the fist time.
Usage
This package was created to be used with jssh
JavaScript shell, rather than standalone.
If you want to use a stable, tested version of synchronous shell-like commands in JavaScript use
shelljs
, which is tested in practice and unit-tests. Most of the commands in this
package are proxied to shelljs
, anyways.
However, is you still want to use this package, just like with shelljs
, you can export the commands to global namespace
and write your synchronous scripts in JavaScript:
require('jssh-api-jssh/global')
html = GET('example.com')
html.to('example.html')
echo('Saved page to "example.html"')
ip = IP()
echo('Your IP is: ' + ip)
Or CoffeeScript:
require 'jssh-api-jssh/global'
html = GET 'example.com'
html.to 'example.html'
echo 'Saved page to "example.html"'
ip = IP()
echo 'Your IP is: ' + ip
Commands
&
cat
cd
chmod
cp
DELETE
dirs
echo
error
exec
find
GET
glob
grep
head
HEAD
help
IP
ln
ls
mkdir
mv
nothing
PATCH
popd
POST
print
pushd
POST
print
pushd
PUT
pwd
request
rm
sed
tempdir
test
to
toEnd
which
TODO
Remove commands that require native module compilation from this package and put in a separate package instead, to make these commands portable across platforms.
Commands still to be implemented:
tar
License
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
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 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.
For more information, please refer to http://unlicense.org/