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

nodeschool-workshops

v1.1.0

Published

Install,Remove and Search for nodeschool workshops without leaving the Terminal

Downloads

12

Readme

js-standard-style

NodeSchool Workshops Manager

A nodejs module that allows you to manage all the nodeschool workshops from your terminal, you can search, install and remove workshop(s) with just one or two line of code in your terminal without going to the internet and search manually for desired workshops.

How to install it ?

 [sudo] npm install -g nodeschool-workshops

[sudo] : Depending on your configuration, you may need to be an administrator in order to install npm packages

How to use it ?

List all workshops

 nsworkshops list

By default, this command list all the workshops(installed + not installed ones). You can add the -i(aka --installed) or -n(aka --notinstalled) flags to fetch only installed or not installed workshops respectively.

Examples
# to list installed workshops:
 nsworkshops list -i
# to list not installed workshops:
 nsworkshops list -n

Search for workshops

 nsworkshops search PATTERN

PATTERN is the workshop name(or some characters from the workshop name), fuzzy search is used here. By default, this command search for both installed & not installed workshops, the returned result can be a workshop name or an array of workshop names

Note : as always we can use the -i and -n flags to limit the returned result.

Examples
# search for installed workshops containing 'javascript':
 nsworkshops search javascript -i
# search for all workshops that contains 'js' and are not already installed:
 nsworkshops search js  -n

Install workshops

 nsworkshops install PATTERN
# Install the remaining workshops:
 nsworkshops install -n

Remove workshops

Remove a list of workshops that contains PATTERN as a substring or a single workshop if the full name is specified:

 nsworkshops remove PATTERN
# Remove installed workshops
 nsworkshops remove -i

How to contribute ?

You are interested and want to contribute? Awesome, you only need to consider the following steps:

  1. Fork this repository.
  2. Use standard to format your code(checkout scripts property in package.json file).
  3. Submit your pull request(PR).