Socket
Socket
Sign inDemoInstall

npm-api

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-api

Base class for retrieving data from the npm registry.


Version published
Weekly downloads
312K
increased by6.37%
Maintainers
1
Weekly downloads
 
Created

What is npm-api?

The npm-api package provides a simple interface to interact with the npm registry programmatically. It allows users to fetch information about packages, users, and other entities on the npm registry.

What are npm-api's main functionalities?

Get Package Information

This feature allows you to fetch detailed information about a specific npm package. In this example, it retrieves information about the 'express' package.

const NpmApi = require('npm-api');
const repo = new NpmApi().repo('express');
repo.package().then(pkg => console.log(pkg));

Get User Information

This feature allows you to fetch information about a specific npm user. In this example, it retrieves information about the user 'isaacs'.

const NpmApi = require('npm-api');
const user = new NpmApi().user('isaacs');
user.info().then(info => console.log(info));

Search for Packages

This feature allows you to search for packages on the npm registry. In this example, it searches for packages related to 'express'.

const NpmApi = require('npm-api');
const npm = new NpmApi();
npm.search('express').then(results => console.log(results));

Other packages similar to npm-api

Keywords

FAQs

Package last updated on 27 Dec 2017

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