Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niksilver/elm-tag-bubbles
Tag bubbles written in Elm
https://github.com/niksilver/elm-tag-bubbles
Last synced: 5 days ago
JSON representation
Tag bubbles written in Elm
- Host: GitHub
- URL: https://github.com/niksilver/elm-tag-bubbles
- Owner: niksilver
- Created: 2015-12-17T23:03:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T21:19:14.000Z (almost 6 years ago)
- Last Synced: 2024-08-01T12:22:07.651Z (3 months ago)
- Language: Elm
- Size: 437 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - niksilver/elm-tag-bubbles - Tag bubbles written in Elm (others)
README
# Elm tag bubbles
Elm application to explore the relationship between the
many topics written about at [theguardian.com](http://theguardian.com).
See it in action at
[http://niksilver.github.io/elm-tag-bubbles/](http://niksilver.github.io/elm-tag-bubbles/).## Build and run the application
Once you've cloned the source you'll need to
[get your own API key](http://open-platform.theguardian.com/access/).
Then put it in a new file at `src/Secrets.elm` that looks like this:
```
module Secrets exposing (..)apiKey : String
apiKey = "YOUR-API-KEY-GOES-HERE"
```Now you can build the application with this command:
```
sh build.sh
```and then visit `out/index.html`.
## Running the tests
Follow the
[https://www.npmjs.com/package/elm-test](instructions for `elm-test` for Elm 0.19).
First install the test packages:
```
npm install -g elm-test
```To run the tests
```
elm-test
```