https://github.com/schafeld/neutrino-hacks
Experiments in Javascript with Neutrino
https://github.com/schafeld/neutrino-hacks
es6 javascript jest neutrino reactjs
Last synced: 2 months ago
JSON representation
Experiments in Javascript with Neutrino
- Host: GitHub
- URL: https://github.com/schafeld/neutrino-hacks
- Owner: schafeld
- Created: 2017-03-07T18:14:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-22T19:48:37.000Z (over 9 years ago)
- Last Synced: 2026-03-01T22:24:31.877Z (5 months ago)
- Topics: es6, javascript, jest, neutrino, reactjs
- Language: JavaScript
- Size: 63.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neutrino-Hacks
## Experiments in Javascript with Neutrino
This is a boilerplate/ experiment with Neutrino and React. So far this is just following along some tutorials, e.g.: For a starting point
https://hacks.mozilla.org/2017/02/using-neutrino-for-modern-javascript-development/
and then the React part from https://davidwalsh.name/neutrino .
This was very helpful too: https://egghead.io/lessons/react-the-render-method .
## Installation
Check out [this repository](https://github.com/schafeld/Neutrino-Hacks), go to root folder and type `yarn install` or `npm install`, I guess.
## Start-Up
`cd` into project root folder and type `yarn start`.
Visit `localhost:5000` in your browser.
## Developer Testing
Simply run `yarn test` in the root folder for some testing with Jest.
See `test/add.test.js` and `src/add.js` for simple unit testing example.