Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwarman/ionic7-playground
A playground application for Ionic 7 React
https://github.com/mwarman/ionic7-playground
ionic react typescript
Last synced: about 1 month ago
JSON representation
A playground application for Ionic 7 React
- Host: GitHub
- URL: https://github.com/mwarman/ionic7-playground
- Owner: mwarman
- Created: 2023-06-30T11:19:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-04T10:46:20.000Z (over 1 year ago)
- Last Synced: 2024-11-12T03:33:10.985Z (3 months ago)
- Topics: ionic, react, typescript
- Language: TypeScript
- Homepage:
- Size: 199 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ionic 7 Playground
> **NOTE:** This project uses Ionic React.
## Getting Started
### NodeJS
Install Node Version Manager, [nvm](https://github.com/nvm-sh/nvm).
Change directory to the project base directory run the following commands.
Switch to the version of Node required by this project.
```
nvm use
```If you receive a message stating that version of Node is not currently installed, use nvm to install it.
```
nvm install
```### Ionic CLI
This project uses Ionic 7.1.1. Install the Ionic CLI globally.
> **NOTE:** Ensure you have installed the correct version of Node and are currently using it.
```
npm install -g @ionic/[email protected]
```## `main` Branch
The `main` branch contains the source for the initially generated Ionic 7 React project.
The project was created using the following command:
```
ionic start ionic7-playground tabs --type=react --capacitor --no-git
```Do **NOT** commit experiments on the `main` branch.
## Experiments
Create experiments on experiment branches. Experiment branches are prefixed with `exp/`, for example:
- `exp/modal-slider`
- `exp/use-camera`## Related Information
- [Ionic Docs][ionic7]
[ionic7]: https://ionicframework.com/docs/ 'Ionic Documentation'
[nvm]: https://github.com/nvm-sh/nvm 'Node Version Manager'