programmingwiki
Get programming articles
Install
npm install programmingwiki
Usage
Note: You can only use this package with es6 import. How to use es6 import in nodejs
import * as programmingwiki from ("programmingwiki")
await programmingwiki.all();
await programmingwiki.random();
await programmingwiki.searchByTitle("REST");
await programmingwiki.searchByTag(["Web-Development", "API"]);
API
.all()
Type: Function
Retrieves all the stored programming articles.
.random()
Type: Function
Random programming article.
.searchByTitle(title)
Type: Function
Retrieve a programming article by the title name.
.searchByTag(tags[])
Type: Function
Retrieves programming articles by their tags.
Some of the tags available are:
- Web-Development
- Languages
- API
- Framework
- Database
- Frontend
- JavaScript-Library
- Backend
- Network
- Software-Development
Related