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.
programmingwiki
Advanced tools
A package which is used to fetch programming articles from a RESTful API.
Get programming articles
npm install programmingwiki
Note: You can only use this package with es6 import. How to use es6 import in nodejs
// es6
import * as programmingwiki from ("programmingwiki")
await programmingwiki.all();
//=>[{"_id":"635ff60b3ef4cbf59de412ba","title":"CSS","content":"Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.","tags":["Language","Web-Development","Frontend"],"__v":0}...]
await programmingwiki.random();
//=> [{"_id":"6360eeebbbd604d6985864e5","title":"REST","content":"REST is short for REpresentational State Transfer. It's an architectural style for designing APIs.","tags":["API"],"__v":0}]
await programmingwiki.searchByTitle("REST");
//=> [{"_id":"6360eeebbbd604d6985864e5","title":"REST","content":"REST is short for REpresentational State Transfer. It's an architectural style for designing APIs.","tags":["API"],"__v":0}]
await programmingwiki.searchByTag(["Web-Development", "API"]);
Type: Function
Retrieves all the stored programming articles.
Type: Function
Random programming article.
Type: Function
Retrieve a programming article by the title name.
Type: Function
Retrieves programming articles by their tags.
Some of the tags available are:
FAQs
A package which is used to fetch programming articles from a RESTful API.
The npm package programmingwiki receives a total of 0 weekly downloads. As such, programmingwiki popularity was classified as not popular.
We found that programmingwiki 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.