Socket
Socket
Sign inDemoInstall

npm-keyword

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-keyword

Get a list of npm packages with keywords


Version published
Weekly downloads
210K
decreased by-1.03%
Maintainers
1
Weekly downloads
 
Created

What is npm-keyword?

The npm-keyword package allows you to search for npm packages by keyword. It provides a simple API to fetch packages that match a given keyword, making it easier to discover related packages.

What are npm-keyword's main functionalities?

Search for packages by keyword

This feature allows you to search for npm packages that match a specific keyword. The code sample demonstrates how to use the npm-keyword package to find all packages related to the keyword 'gulpplugin'.

const keyword = require('npm-keyword');

(async () => {
    const packages = await keyword('gulpplugin');
    console.log(packages);
})();

Search for package names by keyword

This feature allows you to search for the names of npm packages that match a specific keyword. The code sample demonstrates how to use the npm-keyword package to find the names of all packages related to the keyword 'gulpplugin'.

const keyword = require('npm-keyword');

(async () => {
    const packageNames = await keyword.names('gulpplugin');
    console.log(packageNames);
})();

Search for package count by keyword

This feature allows you to get the count of npm packages that match a specific keyword. The code sample demonstrates how to use the npm-keyword package to find the number of packages related to the keyword 'gulpplugin'.

const keyword = require('npm-keyword');

(async () => {
    const count = await keyword.count('gulpplugin');
    console.log(count);
})();

Other packages similar to npm-keyword

Keywords

FAQs

Package last updated on 26 Feb 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc