https://github.com/doowb/dev-link
Run development versions of command line applications.
https://github.com/doowb/dev-link
Last synced: about 2 months ago
JSON representation
Run development versions of command line applications.
- Host: GitHub
- URL: https://github.com/doowb/dev-link
- Owner: doowb
- License: mit
- Created: 2016-04-04T15:14:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-04T15:22:28.000Z (about 9 years ago)
- Last Synced: 2025-02-25T13:43:54.602Z (2 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dev-link [](https://www.npmjs.com/package/dev-link) [](https://travis-ci.org/doowb/dev-link)
> Link and run development versions of command line applications.
## Install
Install globally with [npm](https://www.npmjs.com/)
```sh
$ npm install -g dev-link
```## Usage
Link command line applications during development.
This is useful when doing development on globally installed apps
like [verb](https://github.com/verbose/verb) and [assemble](https://github.com/assemble/assemble) while still using the published versions.```sh
$ cd /path/to/app
$ dev link
linking "app" to "bin/cli.js"
```Use the linked command link application by calling `dev` before the
normal `app` command.```sh
$ cd /path/to/another/app
$ dev app
```## Generate docs
Generate readme and API documentation with [verb](https://github.com/verbose/verb):
```sh
$ npm install verb && npm run docs
```Or, if [verb](https://github.com/verbose/verb) is installed globally:
```sh
$ verb
```## Running tests
Install dev dependencies:
```sh
$ npm install -d && npm test
```## Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/doowb/dev-link/issues/new).
## Author
**Brian Woodward**
* [github/doowb](https://github.com/doowb)
* [twitter/doowb](http://twitter.com/doowb)## License
verb © 2016, [Brian Woodward](https://github.com/doowb).
Released under the [MIT license](https://github.com/doowb/dev-link/blob/master/LICENSE).***
_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on April 04, 2016._