Socket
Socket
Sign inDemoInstall

uptodate

Package Overview
Dependencies
130
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    uptodate

A CLI tool to update dependencies in your package.json


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
7.95 MB
Created
Weekly downloads
 

Readme

Source

uptodate

Build Status Coverage Status npm version

A CLI tool to update dependencies in your package.json.

Installation

npm install -g uptodate

Usage

Usage: uptodate [OPTIONS]

  It opens a package.json and checks its dependencies/devDependencies.
  If there are out-dated packages, it updates them and rewrites the package.json
  Lastly, it takes changelogs from GitHub if is possible, and shows summary of
  them in a browser.

Options:
  -h, --help            Print this text.
  -v, --version         Print the version number.
  --ignore <NAMES>      Ignore package names (comma separated).
  --no-save             Don't rewrite package.json.
  --no-show-changelog   Don't show changelogs in a browser.

Example

uptodate
uptodate --ignore foo,bar,yay --no-show-changelog

Node API

var uptodate = require("uptodate");

uptodate(options, callback)

It opens a package.json and checks its dependencies/devDependencies. If there are out-dated packages, it updates them and rewrites the package.json.

  • options object -- Optional.
    • options.cwd string -- A directory path. This opens package.json of here. By default, process.cwd().
    • options.ignore string[] -- Package names. This ignores the packages even if is out-dated.
    • options.noSave boolean -- A flag that to not rewrite package.json.
  • callback (err: Error|null, result: object[]|null) => void -- Optional. A callback that will be called at done. err is not null if failed. result is an array. Its each value is an instance of {name: string, current: string, latest: string}.
    • name is the package name.
    • current is a version text before updating.
    • latest is a version text after updating probably.

Keywords

FAQs

Last updated on 26 Apr 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc