This module is intended to be used as a quickstart with N|Solid SaaS platform and also works in restricted environments where N|Solid runtime is not installed.
See examples of how to use it.
- We only support LTS versions, so this will fail for stable Node.js versions.
- Shouldn't you have a valid N|Solid SaaS license, consider downloading and installing the
N|Solid for desktop
on your local machine.
Install the module for your project as a regular dependency:
npm install nsolid
or using npx:
npx nsolid
- TL;DR: Check out our examples page.
-
Run
npm install nsolid
on thepackage.json
's project location -
Replace the
node
command withnsolid
at the desired npm scripts executing the applications you want to connect to the N|Solid Console, like thisbefore:
"scripts": { "start": "node index.js", "test": "echo \"Error: no test specified\" && exit 1" },
after:
"scripts": { "start": "nsolid index.js", "test": "echo \"Error: no test specified\" && exit 1" },
- The command for N|Solid Desktop is
localhost:9001
- The URL for N|Solid Console is
http://localhost:6753
- Go to your Node Source account and choose the
NodeSource - SaaS
account as the print below
- You should see the same page as below:
The page shows you the Console URL and the NodeSource SaaS command that you'll need to link your app where:
- The console URL available to copy it
- a button to visit the console page
- your account N|Solid command address
Copy the the command address to use it on the next section.
-
In order to link your current application to the desired N|Solid Console you must add configuration properties either on your
package.json
or using theNSOLID_COMMAND
, for local N-Solid instance, orNSOLID_SAAS
environment variables on your machine. See our examples. -
Should you add the configuration on your current
package.json
file, it should look as follows:before:
"scripts": { "start": "nsolid index.js" },
after:
"scripts": { "start": "nsolid index.js" }, "nsolid": { "saas": "YOUR N|Solid SaaS URL" }
or for local N|Solid instance:
after:
"scripts": { "start": "nsolid index.js" }, "nsolid": { "command": "localhost:9001" }
For more information on these settings please go to https://docs.nodesource.com/nsolid/4.5/docs#nsolid-runtime
- Then, after running
npm start
command, go back to the browser and visit the console (as shown on the previous section). - Your N|Solid Console show the apps you've linked as follows:
If you're running the N|Solid Console locally, you just need to open the URL http://localhost:6753
and you should see the same page as above.
It downloads the latest version of the runtime matching the current Node.js LTS used in the local Node.js installation.
The download happens at the postinstall
process of this module, then proceeds to extract and put the runtime files at the current user's home directory inside a folder like .nsolid-runtime/nsolid-fermium
to be used later by an NPM command.
The module includes a command called nsolid
, which is designed to replace the node
command inside an NPM script and then executes the original task using the N|Solid binary previously downloaded at the postinstall phase.
Currently, this module supports Linux, Windows, and Mac.
To submit a bug report, please create an issue at GitHub.
Contributions are always welcome!
nsolid-npm is Copyright (c) 2021 NodeSource and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
The projects contained within the nsolid-npm images maintain their own Licenses.