An open API service indexing awesome lists of open source software.

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

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.