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

@emeraldpay/paranoid-js

v1.1.0

Published

Check dependencies to ensure there is no too recent updates

Downloads

68

Readme

= Paranoid.js

Check date of a Node project dependencies to ensure there is no too recent dependency.

The reasoning behind such check is to allow only packages that are old enough to be already used by a broad community of JS Developer. And specifically, to avoid a Supply Chain Attack through an update of a package with a malicious code. It's expected that a malicious package doesn't live long before getting noticed by someone. In most cases such attacks make most damage in first few days after publishing. So the Paranoid.js tries to minimize a chance of executing/using a package during this time.

Paranoid.js:

  1. Verifies all dependencies of a Node project
  2. Including all subsequent dependencies
  3. By downloading package manifests from NPM registry
  4. And checking the date of publication
  5. Exiting with an error if a package is too recent

Paranoid.js uses information from NPM API, so it can be used without running a npm install. That's an important moment because a malicious code can run its code during a package installation, which we want to avoid.

NOTE: There is no 100% protection from Supply Attack. Paranoid.js gives additional protection against common attacks, but cannot protect from all. The software is provides AS IS without any warranties.

.Install

npm install -g @emeraldpay/paranoid-js

.Usage:

Usage: index [options]

Arguments: path path to project directory

Options: -V, --version output the version number -c, --config use specified path to config file -a, --allow comma separated list of allowed packages with version spec (@) -d, --deny comma separated list of denied packages with version spec (@) -e, --exclude comma separated list of exclude packages from validating -i, --include comma separated list of include packages from validating -m, --minDays minimum days after publish (default 14) -j, --json display output as JSON -p, --production if it possible, then check specified version from lock file -u, --unsafe return only unsafe packages --debug show debug messages --allowFrom comma separated list of allowed packages with install date (:) --excludeDev exclude development dependencies for validation (ignored for Yarn projects only) --ignoreConfig ignore config file, even if used specified path --ignoreOptions comma separated list of options to ignore from config file --mode validation mode (choices: "common", "extend", "strict") -h, --help display help for command

.Example output:

$ node ./app/index.js /path/to/project --unsafe info: Start loading dependency list... info: Retrieving packages metadata... info: Validate dependencies... warn: Package graceful-fs:4.2.10 is not safe (15 day(s) since last publish) warn: Package https-proxy-agent:5.0.1 is not safe (5 day(s) since last publish)

== No Warranties

Paranoid.js is provided to You "AS IS" and with all faults and defects without warranty of any kind.

To the maximum extent permitted under applicable law, EmeraldPay, Inc, on its own behalf and on behalf of its affiliates and its and their respective licensors and service providers, expressly disclaims all warranties, whether express, implied, statutory or otherwise, with respect to the Paranoid.js, including all implied warranties of merchantability, fitness for a particular purpose, title and non-infringement, and warranties that may arise out of course of dealing, course of performance, usage or trade practice. Without limitation to the foregoing, EmeraldPay, Inc provides no warranty or undertaking, and makes no representation of any kind that the Paranoid.js will meet your requirements, achieve any intended results, be compatible or work with any other software, applications, systems or services, operate without interruption, meet any performance or reliability standards or be error free or that any errors or defects can or will be corrected.

== License

Copyright 2022 EmeraldPay, Inc

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.