Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/owickstrom/hello-node-cljs

Testing Node and Express with ClojureScript.
https://github.com/owickstrom/hello-node-cljs

Last synced: about 1 month ago
JSON representation

Testing Node and Express with ClojureScript.

Awesome Lists containing this project

README

        

# hello-node-cljs

This is a project to test writing ClojureScript for NodeJS and Express.

I started out with the [nodecljs template](http://blog.lauripesonen.com/leiningen-template-for-cljs-on-node-projects/).

## Running it

To just compile and run the application:

lein cljsbuild once
node server.js

If you want automated compilation and reloading of the server you can
use [nodemon](https://github.com/remy/nodemon).

lein cljsbuild auto
# And in another tab/pane/whatever...
nodemon server.js

The application is served at `localhost:3000`.

## License

Copyright © 2014 Oskar Wickström

Distributed under the Eclipse Public License, the same as Clojure.