Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trieloff/stackoverflow-embed
Running ClojureScript on OpenWhisk
https://github.com/trieloff/stackoverflow-embed
Last synced: 10 days ago
JSON representation
Running ClojureScript on OpenWhisk
- Host: GitHub
- URL: https://github.com/trieloff/stackoverflow-embed
- Owner: trieloff
- License: apache-2.0
- Created: 2017-01-06T13:59:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-16T12:06:53.000Z (over 7 years ago)
- Last Synced: 2024-11-18T08:12:19.556Z (2 months ago)
- Language: JavaScript
- Size: 23.2 MB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Running ClojureScript on OpenWhisk
==================================Sample OpenWhisk action written in ClojureScript.
## Installing
First, compile ClojureScript
```bash
$ lein cljsbuild once server-prod
```This command installs the node modules and generates the source code for the action at `main.js`.
During development, you might want to have the cljsbuild run continuously in the background:
```bash
$ lein cljsbuild auto server-prod
```## Testing it locally
```bash
$ node test.js ./main.js url=http://stackoverflow.com/questions/43791970/pandas-assigning-columns-with-multiple-conditions-and-date-thresholds
```Specify your StackExchange API key in the `key` parameter if you run into rate limit issues.