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

requiremate

v1.1.3

Published

keeps your installed dependencies in sync with the required modules in your code.

Downloads

6

Readme

requiremate

keeps your installed dependencies in sync with the require'd modules in your code.

Tired of these messages?

Error: Cannot find module 'wtf@&!#'

requiremate to the rescue! hassle free installing of your required modules.

Not sure if you have got too many dependencies in your package.json?

Want to know if the installed version are the defined ones?

Want a simple command to keep your installed and defined dependencies in sync with the required modules in your code?

to check, run:

requiremate -n

to fix it, run:

requiremate

install

install it globally, you won't regret it. it is really useful for every module you develop.

npm install -g requiremate

usage

  1. make sure you have got a package.json
  2. write your code (you don't have to do any npm install
  3. before you run your code, run: requiremate in the root directory of your project.
  4. done.

command line usage

command line options are handled with subarg.


# dryrun without action, only report
requiremate -n

# fix installs in the current directory
requiremate

# remove all node_modules and fix installs
requiremate --remove

# run with verbose logs
requiremate --verbose

# check installs in a neighbour project (dir option)
requiremate ../my-friends-project --dryrun

example report


requiremate -n

requiremate working directory /Users/andineck/Development/github/requiremate
start searching for unused dependencies
start installing defined dependencies
start searching for missing dependencies
start checking version
chalk: installed: 1.1.1, expected: ^1.1.1
check-dependencies: installed: 0.9.5, expected: ^0.9.5
defaults: installed: 1.0.2, expected: ^1.0.2
depcheck: installed: 0.4.7, expected: ^0.4.7
depmissing: installed: 0.1.2, expected: ^0.1.1
run-series: installed: 1.1.2, expected: ^1.1.2
shelljs: installed: 0.5.3, expected: ^0.5.3
sliced: installed: 1.0.1, expected: ^1.0.1
subarg: installed: 1.0.0, expected: ^1.0.0
tape: installed: 4.2.0, expected: ^4.2.0
these are your dependencies chalk check-dependencies defaults depcheck depmissing run-series shelljs sliced subarg tape
all done!

node.js usage

var requiremate = require('requiremate');

var options = {
  "dryrun": true,
  "dir": "/my/computer/my-project",
  "withoutDev": false,
  "ignoreDirs": [
    "sandbox",
    "dist",
    "bower_components"
  ],
  "ignore": [
    "sandbox",
    "dist",
    "bower_components"
  ],
  "ignoreMatches": [],
  "ignorePackages": []
}

requiremate(options);

how does it work

requiremate follows this workfow (taken from code)


  series([
     remove,     // 0. optional option remove: remove the whole node_modules folder (just to make sure)
     unused,     // 1. remove unused dependencies from file system and package.json
     install,    // 2. install the defined dependencies
     missing,    // 3. install missing dependencies
     version,    // 4. update package.json with installed version
     done        // 5. say good bye, call callback
  ]);

options

you can run requiremate from the command line as well as from your node.js code.

available options:

  • verbose (alias: n)
  • dryrun
  • remove
  • withoutDev
  • ignoreDirs
  • ignoreMatches
  • ignorePackages
  • saveDev
  • ignoreVersion
  • dir

license

MIT

author

Andi Neck | @andineck | [email protected]

sponsored by

intesso