Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
nodeschool-workshops
Advanced tools
Install,Remove and Search for nodeschool workshops without leaving the Terminal
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.
[sudo] npm install -g nodeschool-workshops
[sudo] : Depending on your configuration, you may need to be an administrator in order to install npm packages
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.
# to list installed workshops:
nsworkshops list -i
# to list not installed workshops:
nsworkshops list -n
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.
# 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
nsworkshops install PATTERN
# Install the remaining workshops:
nsworkshops install -n
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
You are interested and want to contribute? Awesome, you only need to consider the following steps:
FAQs
Install,Remove and Search for nodeschool workshops without leaving the Terminal
We found that nodeschool-workshops demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.