Files

31 lines
990 B
Markdown
Raw Permalink Normal View History

2023-01-24 17:45:36 -08:00
# browser-playground
2022-12-08 10:27:32 -08:00
2023-01-24 17:45:36 -08:00
This is a web-based playground hosting the [language server](../actions-languageserver/) in a web worker connected to an instance of the [Monaco](https://microsoft.github.io/monaco-editor/) editor. You can try it at https://actions.github.com/languageservices.
## Contributing
### Build and run
Even though the package is part of the `npm` workspace, it needs its dependencies to be installed locally in order to run `webpack-dev-server`. To do so, run:
```bash
2023-01-25 09:18:33 -08:00
npm i --workspaces=false
2023-01-24 17:45:36 -08:00
```
then
2022-12-08 10:27:32 -08:00
```bash
2023-01-25 09:12:44 -08:00
npm start
2022-12-08 10:27:32 -08:00
```
2023-01-24 17:45:36 -08:00
to build and serve the app at `localhost:8080`.
## Contributing
See [CONTRIBUTING.md](../CONTRIBUTING.md) at the root of the repository for general guidelines and recommendations.
If you do want to contribute, please run [prettier](https://prettier.io/) to format your code before submitting your PR.
## License
This project is licensed under the terms of the MIT open source license. Please refer to [MIT](../LICENSE) for the full terms.