Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
wikimediapi-extensions
Advanced tools
Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
consumet.ts is a Node library which provides high-level APIs to get information about several entertainment mediums like books, movies, comics, anime, manga, etc.
To use consumet.ts in your project, run:
yarn add @consumet/extensions
# or "npm i @consumet/extensions"
Example - searching for a book using the libgen provider.
import { BOOKS } from "@consumet/extensions"
// Create a new instance of the Libgen provider
const books = new BOOKS.Libgen();
// Search for a book. In this case, "Pride and Prejudice"
const data = books.search('pride and prejudice').then(data => {
// print results
console.log(data)
})
Exmaple - searching for anime using the gogoanime provider.
import { ANIME } from "@consumet/extensions"
// Create a new instance of the Gogoanime provider
const gogoanime = new ANIME.Gogoanime();
// Search for an anime. In this case, "One Piece"
const results = gogoanime.search("One Piece").then(data => {
// print results
console.log(data);
})
Do you want to know more? Head to the Getting Started
.
Make a new issue with the name of the provider on the title, as well as a link to the provider in the body paragraph.
Check out contributing guide to get an overview of consumet.ts development.
You can contact the maintainers of consumet.ts via email, or join the discord server (Recommended).
Thanks to the following people for keeping this project alive and thriving.
Licensed under MIT.
FAQs
Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
The npm package wikimediapi-extensions receives a total of 35 weekly downloads. As such, wikimediapi-extensions popularity was classified as not popular.
We found that wikimediapi-extensions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.