https://github.com/ergenekonyigit/simple-crud-reagent
Simple CRUD App with ClojureScript and Reagent
https://github.com/ergenekonyigit/simple-crud-reagent
Last synced: about 2 months ago
JSON representation
Simple CRUD App with ClojureScript and Reagent
- Host: GitHub
- URL: https://github.com/ergenekonyigit/simple-crud-reagent
- Owner: ergenekonyigit
- License: mit
- Created: 2019-03-19T10:47:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-20T08:38:04.000Z (about 6 years ago)
- Last Synced: 2025-04-18T09:34:28.392Z (about 2 months ago)
- Language: Clojure
- Homepage: https://simple-crud-reagent.netlify.app/
- Size: 8.79 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Development mode
To start the Figwheel compiler, navigate to the project folder and run the following command in the terminal:
```
lein figwheel
```Figwheel will automatically push cljs changes to the browser.
Once Figwheel starts up, you should be able to open the `public/index.html` page in the browser.### REPL
The project is setup to start nREPL on port `7002` once Figwheel starts.
Once you connect to the nREPL, run `(cljs)` to switch to the ClojureScript REPL.### Building for production
```
lein clean
lein package
```