Coder Social home page Coder Social logo

uptodate's Introduction

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.

uptodate's People

Contributors

mysticatea avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.