Determine the URL to a given Ember channels (beta, canary, etc) latest tarball.
npm install ember-source-channel-urlRetrieve a URL that can be used to reference a tarball representing the latestember-source build for that channel.
```
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/
`
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
`js
const getURLFor = require('ember-source-channel-url');
getURLFor('canary').then((url) => {
// use the URL here
});
``