Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noredink/find-elm-dependencies
Find elm dependencies for a given entry
https://github.com/noredink/find-elm-dependencies
Last synced: 3 months ago
JSON representation
Find elm dependencies for a given entry
- Host: GitHub
- URL: https://github.com/noredink/find-elm-dependencies
- Owner: NoRedInk
- License: bsd-3-clause
- Created: 2017-01-26T14:27:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T21:00:37.000Z (about 2 years ago)
- Last Synced: 2024-09-30T05:22:49.859Z (3 months ago)
- Language: JavaScript
- Size: 147 KB
- Stars: 6
- Watchers: 5
- Forks: 8
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
find-elm-dependencies
=====================> Find elm dependencies of a given entry file.
## Installation
```bash
$ npm i find-elm-dependencies -S
```## Usage
```js
var findAllDependencies = require('find-elm-dependencies').findAllDependencies;findAllDependencies('./path/to/Main.elm')
.then(function(dependencies) {
console.log(dependencies);
});```
This was extracted from https://github.com/rtfeldman/node-elm-compiler