Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

autod

node-modules36.7k3.1.2

auto generate dependencies

autod

readme

autod

NPM version David deps node version Gittip

Auto generate dependencies and devDependencies by parse the project file. autod will parse all the js files in path, and get the latest dependencies version from registry.npmjs.org or other registries by -r.

install

$ npm install -g autod

usage

$ bin/autod -h

 Usage: autod [options]

  Options:

    -h, --help                                           output usage information
    -V, --version                                        output the version number
    -p, --path [root path]                               the root path to be parse
    -t, --test <test/benchmark/example directory paths>  modules in these paths will be tread as devDependencies
    -e, --exclude <exclude directory path>               exclude parse directory, split by `,`
    -r, --registry <remote registry>                     get latest version from which registry
    -f, --prefix [version prefix]                        version prefix, can be `~` or `^`
    -F, --devprefix [dev dependencies version prefix]    develop dependencies version prefix, can be `~` or `^`
    -w, --write                                          write dependencies into package.json
    -i, --ignore                                         ignore errors, display the dependencies or write the dependencies.
    -m, --map                                            display all the dependencies require by which file
    -d, --dep <dependently modules>                      modules that not require in source file, but you need them as dependencies
    -D, --devdep <dev dependently modules>               modules that not require in source file, but you need them in as devDependencies
    -k, --keep <dependently modules>                     modules that you want to keep version in package.json file
    -s, --semver <dependencies@version>                  auto update these modules within the specified semver
  • Autod will parse all the js files in path, and you can exclude folder by -e, --exclude.
  • All the modules in test folder (can be alter by -t, --text) will parsed as devDependencies.
  • If you set -w, --write, autod will write the dependencies into package.json file. dependencies will replace dependencies in package.json, and devDependencies will merge with devDependencies in package.json, then write into package file.
  • -f, --prefix will add prefix to each dependencies' version.
  • -F, --devprefix will add prefix to each dev dependencies' version.
  • -i, --ignore will display or wrtie the dependencies even some error happened.
  • -d --dep will add modules to dependencies even not require by any file.
  • -D --devdep will add modules to devDependencies even not require by any file.
  • -k --keep will keep the modules' version in package.json not change by autod.
  • -s, --semver will update these modules within the specified semver.
  • -n, --notransform disable transfrom es next, don't support es6 modules.

a simple example of autod:

autod -w --prefix="~" -d connect -D mocha,should -k express -s connect@2

Maintains your dependencies in Makefile

add a command in your Makefile

autod:
    @./node_modules/.bin/autod -w
    @npm install

then run make autod, it will find all the dependencies and devDependencies in your project, add / remove dependencies, and bump the versions.

check out some examples:

es6 modules support

All files will compiled by babel with babel-preset-react, babel-preset-es2015, babel-preset-stage-0.

Plugin support

You can write a plugin for autod to decide how to parse dependencies.

  • Write a plugin, and publish it to NPM.
module.exports = function (filepath, content) {
  // find the dependencies
  return []; // return dependencies
};
  • Use plugin:

install plugin from NPM, then use it with autod:

autod -P pluginName

Config support

You can put all the options in ${cwd}/.autod.conf.js, when you run autod, it will load this file as input options. It can be both a js file or a json file.

module.exports = {
  write: true,
  prefix: '~',
  devprefix: '^',
  dep: [
    'bluebird'
  ],
  semver: [
    'koa-router@4',
    'koa-compose@2'
  ],
};

License

(The MIT License)

Copyright (c) 2013~2015 dead_horse dead_horse@qq.com;

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

changelog

3.1.2 / 2021-11-15

others

3.1.1 / 2020-11-03

fixes

others

3.1.0 / 2019-03-28

features

fixes

3.0.1 / 2017-11-13

fixes

others

3.0.0 / 2017-11-11

fixes

others

2.10.1 / 2017-10-12

fixes

2.10.0 / 2017-10-12

features

fixes

2.9.0 / 2017-07-31

features

2.8.0 / 2017-03-22

  • feat: support require.resolve (#27)

2.7.1 / 2016-08-19

  • fix: keep will keep module not exist

2.7.0 / 2016-08-03

  • deps: use ^
  • chore(deps): upgrade babel-core (#22)

2.6.1 / 2016-06-04

  • fix: fix test options

2.6.0 / 2016-04-28

  • feat: add cov and coverage to default exclude dir
  • fix: exclude test roots

2.5.2 / 2016-04-19

  • fix: support all es2015 and stage0
  • fix: remove registry url slash (#21)

2.5.1 / 2016-04-09

  • fix: require preset and plugin

2.5.0 / 2016-04-09

2.4.2 / 2016-01-21

  • fix: 修复 semver

2.4.1 / 2015-12-23

  • fix: fix keep

2.4.0 / 2015-12-23

  • feat: support .autod.conf.js

2.3.0 / 2015-12-12

  • feat: support autod plugin

2.2.0 / 2015-12-08

  • desp: update dependencies
  • feat: support diable transfrom

2.1.3 / 2015-09-17

  • traceur instead of babel

2.1.2 / 2015-09-17

  • hotfix require

2.1.1 / 2015-09-14

  • rename

2.1.0 / 2015-09-14

2.0.1 / 2015-02-16

  • fix: fix exclude in test folder

2.0.0 / 2015-01-15

  • feat: use crequire to parse the require tag, fixes #3

1.2.0 / 2015-01-13

  • feat: support --devprefix
  • bump dependencies

1.1.4 / 2014-11-29

  • fix indent.

1.1.3 / 2014-11-29

  • better display for print dependency map

1.1.2 / 2014-11-20

  • fix typo error

1.1.1 / 2014-10-20

  • Merge pull request #14 from node-modules/fix-publish-config-registry
  • fix publishConfig.registry not work bug

1.1.0 / 2014-10-18

  • support array test roots

1.0.0 / 2014-10-01

  • support -s for semver, close #13
  • add -D options, close #12

0.3.2 / 2014-08-06

  • fix get registry from package.json

0.3.1 / 2014-08-06

  • fix publishConfig.registry

0.3.0 / 2014-08-06

  • Merge pull request #11 from node-modules/default-registry
  • try to read default registry from publishConfig

0.2.5 / 2014-08-04

  • fix stupid typo

0.2.4 / 2014-07-27

  • remove process.exit(0), fix --map

0.2.3 / 2014-07-22

  • support scope

0.2.2 / 2014-06-26

  • update reg to support kissy/lib/xtemplate type
  • update examples
  • Merge branch 'master' of github.com:node-modules/autod
  • update readme
  • Merge pull request #9 from coderhaoxin/master
  • fix typo

0.2.1 / 2014-06-06

  • support mz/fs type
  • update registry link in readme

0.2.0 / 2014-05-25

  • add minimatch, fixed #8
  • update default registry

0.1.4 / 2014-04-20

  • fix prefix, default registry to taobao registry
  • Merge pull request #7 from popomore/master
  • fix double prefix in devDependencies

0.1.3 / 2014-04-10

  • Merge pull request #6 from node-modules/timeout
  • increase request timeout

0.1.2 / 2014-03-14

  • Merge pull request #5 from fengmk2/gzip
  • update urllib to support gzip and add full user-agent
  • remove test folder

0.1.1 / 2014-03-02

  • fix reg error

0.1.0 / 2014-01-25

  • print all the info even not write package.json
  • add print removed modules

0.0.13 / 2014-01-22

  • hotfix old is undefiend, fixed #2

0.0.12 / 2014-01-20

  • add update info

0.0.11 / 2014-01-17

  • add -k --keep options, to keep version not change in package.json

0.0.10 / 2014-01-16

  • support -d --dep

0.0.9 / 2014-01-15

  • fix can not be detected

0.0.8 / 2013-12-26

  • fix reg

0.0.7 / 2013-12-26

  • add -v, fix error message

0.0.6 / 2013-12-25

  • fix filter

0.0.5 / 2013-12-25

  • add -m options to display denpendencies map
  • update readme

0.0.4 / 2013-12-25

  • add ignore, add color
  • add file map and --prefix
  • add file map and --prefix
  • add nodeICO

0.0.3 / 2013-12-24

  • do not parse error and unknow version

0.0.2 / 2013-12-23

  • support extname not equal to .js, fix bin/autop not be parsed

0.0.1 / 2013-12-23

  • add npmignore
  • add readme
  • sort output
  • complete write to package.json
  • complete write to package.json
  • fix parseDir return error
  • filter core modules
  • add bin
  • add bin
  • fix comment
  • complete auto parse dependencies