https://github.com/cometkim/reason-todomvc
TodoMVC implementation written in ReasonML
https://github.com/cometkim/reason-todomvc
bucklescript reason-react reasonml todomvc
Last synced: about 1 year ago
JSON representation
TodoMVC implementation written in ReasonML
- Host: GitHub
- URL: https://github.com/cometkim/reason-todomvc
- Owner: cometkim
- License: mit
- Created: 2020-03-02T21:30:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-13T19:18:08.000Z (over 3 years ago)
- Last Synced: 2024-10-29T14:39:09.705Z (over 1 year ago)
- Topics: bucklescript, reason-react, reasonml, todomvc
- Language: Reason
- Homepage: https://cometkim.github.io/reason-todomvc/
- Size: 1.15 MB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - reason-todomvc
README
# ReasonML TodoMVC
[](https://github.com/cometkim/reason-todomvc/actions)
[Demo](https://cometkim.github.io/reason-todomvc/)
## Contributing
### Installing / Getting started
All the dependencies can be install via your yarn:
```bash
yarn install
```
That's it! You're up and running, you can start the project with:
```bash
yarn start
```
### Developing
Assuming you're developing with Visual Studio Code (if you're not, you should definitely give it a shot, it's awesome), all you need to develop is this extension: [vscode-reasonml](https://github.com/reasonml-editor/vscode-reasonml).
This will give you compilation errors in the editor and code intelliscence.
### Running Tests
This project uses Jest as a test framework. You can run the tests of the project with:
```bash
yarn test
```
### Creating production builds
To create a production build of the application, you can run:
```bash
yarn build
```
This will output the compiled files in `build/`.
## Acknowledgement
- This production was bootstrapped by [spin](https://github.com/tmattio/spin), a project scaffolding tool made by [@tmattio](https://github.com/tmattio)
## LICENSE
MIT