https://github.com/eslint/playground
ESLint online playground
https://github.com/eslint/playground
Last synced: 5 months ago
JSON representation
ESLint online playground
- Host: GitHub
- URL: https://github.com/eslint/playground
- Owner: eslint
- License: apache-2.0
- Archived: true
- Created: 2022-02-04T19:48:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T00:53:27.000Z (almost 3 years ago)
- Last Synced: 2024-04-14T10:26:31.115Z (about 1 year ago)
- Language: JavaScript
- Size: 3.96 MB
- Stars: 11
- Watchers: 12
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESLint Playground
This repository contains the code for the [ESLint Playground](https://eslint.org/play).
This application is built with [Eleventy](https://www.11ty.io) and [React](https://reactjs.org/) and is hosted on [Netlify](https://www.netlify.com). We proxy from `/play` on the main website to this app, but the two are deployed separately.
## Developer Setup
To set up a local development environment, install [Node.js](https://nodejs.org/) (be sure to follow the instructions for your platform) and follow the steps below:
```sh
# Clone the repository
git clone [email protected]:eslint/playground.git# Navigate to the root directory
cd playground# Install dependencies
npm install
```Once you have set up your environment, you can run a copy of the website locally using this command:
```sh
npm start
```This will watch for changes to the source code and rebuild the website, which will be hosted at `http://localhost:2024/`.
## License
[Apache 2.0](LICENSE)