https://github.com/thondery/kenote-react-base
React Base for kenote
https://github.com/thondery/kenote-react-base
babel kenote react webpack
Last synced: about 2 months ago
JSON representation
React Base for kenote
- Host: GitHub
- URL: https://github.com/thondery/kenote-react-base
- Owner: thondery
- License: mit
- Created: 2017-11-06T16:05:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-09T06:54:59.000Z (over 8 years ago)
- Last Synced: 2025-10-20T19:27:26.921Z (8 months ago)
- Topics: babel, kenote, react, webpack
- Language: JavaScript
- Homepage:
- Size: 259 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kenote-react-base
React Base for kenote
[![Version Code][version-image]][version-url]
[![Build Status][travis-image]][travis-url]
[![Codecov Status][codecov-image]][codecov-url]
[![Gratipay][licensed-image]][licensed-url]
[version-image]: https://img.shields.io/badge/version-v1.1.0-orange.svg
[version-url]: https://github.com/thondery/kenote-react-base
[travis-image]: https://travis-ci.org/thondery/kenote-react-base.svg?branch=master
[travis-url]: https://travis-ci.org/thondery/kenote-react-base
[codecov-image]: https://img.shields.io/codecov/c/github/thondery/kenote-react-base/master.svg
[codecov-url]: https://codecov.io/github/thondery/kenote-react-base?branch=master
[licensed-image]: https://img.shields.io/badge/license-MIT-blue.svg
[licensed-url]: https://github.com/thondery/kenote-react-base/blob/master/LICENSE
## Requirements
- node ^6.0.0
- npm ^3.0.0
## Installation
```bash
$ git clone https://github.com/thondery/kenode-react-base.git
$ cd
$ yarn # Install project dependencies (or `npm install`)
```
## Running the Project
```bash
$ yarn start # Start the development server (or `npm start`)
```
| yarn \ | Description |
|-----|-----|
| start | Serves your app at localhost:3000 |
| build | Builds the application to ./dist |
| test | Runs unit tests with Jest. |
| codecov | Runs unit tests & codecov with Jest. |
## Project Structure
```bash
├── dist
├── dll
│ └── manifest.json
├── src # Application source code
│ ├── containers
│ │ └── root.js
│ ├── index.js # Application bootstrap and rendering
│ └── index.html # Main HTML page container for app
├── .babelrc
├── project.config.js
├── webpack.config.js
├── webpack.dev.config.js
├── webpack.dll.config.js
└── webpack.prod.config.js
```
## License
this repo is released under the [MIT License](https://github.com/thondery/kenote-react-base/blob/master/LICENSE).