https://github.com/tinymce/tinymce-react-test-page
An easily extensible test page for tinymce-react
https://github.com/tinymce/tinymce-react-test-page
Last synced: 11 months ago
JSON representation
An easily extensible test page for tinymce-react
- Host: GitHub
- URL: https://github.com/tinymce/tinymce-react-test-page
- Owner: tinymce
- Created: 2022-03-01T05:04:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T05:26:09.000Z (about 1 year ago)
- Last Synced: 2025-01-15T19:54:57.535Z (about 1 year ago)
- Language: JavaScript
- Size: 3.27 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tinymce React Test Page
This project is built using React version 18
## Table of Contents
- [Setting Up the Project](#setting-up-the-project)
- [Running the Development Server](#running-the-development-server)
- [Building the Project](#building-the-project)
## Setting Up the Project
To install all dependencies, run:
```bash
yarn install
```
Alternatively, you can use `npm`, `pnpm`, or `bun`:
```bash
npm install
```
```bash
pnpm install
```
```bash
bun install
```
## Running the Development Server
To start the development server, execute:
```shell
yarn start
```
For other package managers:
```shell
npm start
```
```shell
pnpm start
```
```shell
bun start
```
## Building the Project
To compile the project, use:
```shell
yarn build
```
For other package managers:
```shell
npm run build
```
```shell
pnpm run build
```
```shell
bun run build
```
The compiled output will be placed in the `dist/` directory.