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

https://github.com/ember-cli/ember-source-channel-url


https://github.com/ember-cli/ember-source-channel-url

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# ember-source-channel-url

Retrieve a URL that can be used to reference a tarball representing the latest
`ember-source` build for that channel.

## Usage

### Command Line API

```
npx ember-source-channel-url canary
```

Will print out:

```sh
The URL for the latest tarball from ember-source's canary channel is:

https://s3.amazonaws.com/builds.emberjs.com/canary/shas/.tgz
```

If you'd like to update `ember-source` in your `package.json` with the new URL, you can use the `--write` option:

```
npx ember-source-channel-url canary --write
```

### Programmatic API

```js
const getURLFor = require('ember-source-channel-url');

getURLFor('canary').then((url) => {
// use the URL here
});
```