Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ionic-team/docs-demo
A demo/kitchen sink for the docs
https://github.com/ionic-team/docs-demo
Last synced: 27 days ago
JSON representation
A demo/kitchen sink for the docs
- Host: GitHub
- URL: https://github.com/ionic-team/docs-demo
- Owner: ionic-team
- License: mit
- Created: 2019-07-26T15:57:24.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T13:45:03.000Z (about 2 months ago)
- Last Synced: 2024-10-01T06:20:59.750Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://docs-demo-mu.vercel.app
- Size: 1.83 MB
- Stars: 90
- Watchers: 8
- Forks: 59
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Ionic Kitchen Sink
The Ionic Kitchen Sink is a collection of demos of Ionic components.
It can be previewed live on the Ionic Framework documentation site here: https://ionicframework.com/docs
## Getting Started
To start building, clone this repository:
```bash
git clone https://github.com/ionic-team/docs-demo.git
```Once cloned, run the following to install dependencies and run the app:
```bash
npm i
npm start
```## Production
To build for production, run:
```bash
npm run build
```## Unit Tests
To run the unit tests once, run:
```bash
npm test
```To run the unit tests and watch for file changes during development, run:
```bash
npm run test.watch
```