npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nsolid-manager

v1.0.6

Published

A manager that sets up and runs N|Solid for you

Downloads

16

Readme

Note: This has been broken with the newest versions of N|Solid. The good news is it's now much easier to set up than it used to be, so NSM is no longer needed.

N|Solid Manager

Automatically download and start up everything required to run N|Solid

Installation

npm install -g nsolid-manager

Usage

nsm app.js

This will spin up N|Solid's dependencies and start an N|Solid Console server on port 3000.

You can also specify a custom name for your application (reflected in the Console) with the --name flag:

nsm app.js --name myApp

Features

Automatically download and set up all prerequisites required for an N|Solid server and execute a target app using the nsolid executable.

It'll handle:

  • Downloading N|Solid and all required dependencies (N|Solid Runtime, N|Solid Hub/Proxy, N|Solid Console, etcd) for your platform
  • Starting all necessary services
  • Exporting relevant environment variables
  • Starting the target app with the nsolid executable

With one command, you'll be ready to navigate to the N|Solid Console and watch how your app is doing.

Parameters

--name or -n

(optional) A user-friendly name for your app. This is how it will be displayed in the N|Solid console.

--path or -p

(optional) An alternative way to specify the target app's location.

Default behavior

The manager doesn't offer much customization yet. It's using the default ports and addresses for the different components of N|Solid.

Tweak the .nsolid-proxyrc file (inside the global module's dependencies folder) as you normally would to adjust proxy settings.

The manager will automatically set the following environment variables as part of start-up:

NSOLID_HUB = 'localhost:4001'
NSOLID_SOCKET = 1111

Disclaimer

Currently, nsolid-manager only supports running one app at a time. We're working on this.

Bug reports and feature requests

Please feel free to submit an issue on the nsolid-manager GitHub page if you come across any issues.

Contribute

If you'd like contribute to nsolid-manager, please do!

Coming soon

  • The manager should offer more optional parameters to override default behavior such as the port on which to host the N|Solid console.