npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

npm-install-to

v3.0.1

Published

Install npm modules programmatically to given path

Downloads

11,353

Readme

npm-install-to Build Status

Provides an API for npm install through globally installed npm.

See also: runtime-npm-install

introduction

key features

  • does not introduce npm as dependency, by using globally installed npm
  • allows installing modules to a specific directory
  • optimized for performance: calling with already installed packages should be as quick as possible

caching

Does not attempt to install modules that are found in <installPath>/node_modules with satisfying install parameters in package.json.

For example, if one of the packages to be installed is [email protected]. the library will check if package.json at <installPath>/node_modules/ramda contains { _requested: { type: "version", fetchSpec: "0.26.0" } }. Failing that, it will install ramda at the given version.

The same strategy is applied for tags as well.

global npm

As mentioned, this module uses globally installed npm, through a module called global-npm, instead of introducing npm as its own dependency. This may present a problem, in case the global npm is incompatible with the way this library uses npm's programmatic API.

The library runs the actual npm.commands.install() in a child process. The only reason for that is that programmatic npm install pollutes stdout of the process. Spawning a child process seemed like a better idea than monkey patching console.log for the duration of the npm install part.

install

npm install npm-install-to

API

The module exports following functions:

npmInstallTo(installPath: string, packages: string[], options: Object): Promise<Object>

installPath: string

A path in the local filesystem where modules should be installed to. It does not have to exist.

packages: string[]

A list of packages as strings, corresponding to how npm install command is given packages to be installed. More information on that available with npm help install.

options: Object
{
  // Exclude packages from being installed, but return them if already installed
  skipInstall: string[],
  // Force specific packages to be installed regardless of if they exist already
  forceInstall: string[],
}

Use skipInstall option to exclude specific packages from being installed. They will still be in the return value, but the function won't check if they have to be installed.

The option forceInstall can be used to schedule some packages to be installed regardless of if they are already installed with the same version.

Returned promise resolves to an object containing output from npm install, and locations of installed modules.

For example, given the input:

const { npmInstallTo } = require('npm-install-to')
npmInstallTo('/path/to/dir', [
  '[email protected]',
  'ramda@latest',
  'lodash'
])

The resolved object might look as follows:

{ npmOutput:
   '+ [email protected]\n+ [email protected]\n+ [email protected]\nadded 1 package from 2 contributors, updated 2 packages and audited 713 packages in 1.854s\nfound 0 vulnerabilities',
  packages:
  { '[email protected]': '/path/to/dir/node_modules/treis',
    'ramda@latest': '/path/to/dir/node_modules/ramda',
    lodash: '/path/to/dir/node_modules/lodash' } }

getPkgsToBeInstalled(installPath: string, packages: string[]): Promise<string[]>

Use to check which given packages would be installed, if npmInstallTo were to be run with them.

example

const { npmInstallTo } = require('npm-install-to')

npmInstallTo(`${process.env.HOME}/test-dir`, [
  '[email protected]',
  'ramda@latest',
  'lodash'
])
  .then(console.log)
  .catch(console.log)

debugging

Uses debug for debugging messages.

Enabling them with export DEBUG=npm-install-to might provide helpful information.

related projects