https://github.com/ionic-team/docs-demo
A demo/kitchen sink for the docs
https://github.com/ionic-team/docs-demo
Last synced: 3 months 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 (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T00:17:44.000Z (9 months ago)
- Last Synced: 2025-03-28T10:14:02.685Z (4 months ago)
- Language: TypeScript
- Homepage: https://docs-demo-mu.vercel.app
- Size: 1.56 MB
- Stars: 94
- Watchers: 8
- Forks: 58
- Open Issues: 6
-
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
```