Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crissdev/kv-es6-docs
A simple app created with ES6 and Knockout to browse through Knockout-Validation documentation.
https://github.com/crissdev/kv-es6-docs
Last synced: about 2 months ago
JSON representation
A simple app created with ES6 and Knockout to browse through Knockout-Validation documentation.
- Host: GitHub
- URL: https://github.com/crissdev/kv-es6-docs
- Owner: crissdev
- License: mit
- Created: 2015-04-26T23:54:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-06T19:06:04.000Z (over 9 years ago)
- Last Synced: 2023-04-10T00:00:29.921Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kv-es6-docs
A simple app created with ES6 and Knockout to browse through Knockout-Validation documentation.
### Application Structure
The main sections of the app:
- `src` contains code that makes the app (scripts, styles etc.)
- `src/app` contains code that makes parts of the app (pages, components etc.)
- `app/components` contains Knockout components used throughout the application
- `app/pages` contains custom Knockout components that will be shown as pages
- `app/shared` contains shared code used throughout the application
- `app/styles` contains all the CSS required for the application```
/src/
|
|__/app/
| |
| |__/components/
| |
| |__/pages/
| |
| |__/shared/
|
|__/styles/
|
|__index.html
```### Run the app
```sh
git clone https://github.com/crissdev/kv-es6-docs.git
npm install
npm start
```