An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# dev-link [![NPM version](https://img.shields.io/npm/v/dev-link.svg)](https://www.npmjs.com/package/dev-link) [![Build Status](https://img.shields.io/travis/doowb/dev-link.svg)](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._