view xml/en/docs/njs/cli.xml @ 2331:5eba0f7b24a9

njs-0.2.8
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 26 Feb 2019 18:11:41 +0300
parents b9144a131eff
children bb0a2fbdc886
line wrap: on
line source

<?xml version="1.0"?>

<!--
  Copyright (C) Nginx, Inc.
  -->

<!DOCTYPE article SYSTEM "../../../../dtd/article.dtd">

<article name="Command-line interface"
        link="/en/docs/njs/cli.html"
        lang="en"
        rev="3">

<section>
<para>
njs scripts development and debugging can be performed
from the command-line.
The command-line utility is available after the installation of
the Linux <link doc="install.xml" id="install_package">package</link>
or after building from the
<link doc="install.xml" id="install_sources">sources</link>.
Compared to njs running inside nginx,
nginx objects
(<link doc="reference.xml" id="http">HTTP</link> and
<link doc="reference.xml" id="stream">Stream</link>)
are not available in the utility.
<example>
$ echo "2**3" | njs -q
8

$ njs
>> var o = {a:[]}
undefined

>> JSON.stringify(o, undefined,1)
{
 "a": [

 ]
}
>>
</example>
</para>

</section>

</article>