https://github.com/asfktz/devtools-playground
Standalone Devtools for prototyping & debugging
https://github.com/asfktz/devtools-playground
chrome-devtools debugging-tool electron-app inspector nodejs prototyping
Last synced: 9 months ago
JSON representation
Standalone Devtools for prototyping & debugging
- Host: GitHub
- URL: https://github.com/asfktz/devtools-playground
- Owner: asfktz
- License: mit
- Created: 2017-09-16T14:39:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-27T18:22:03.000Z (over 8 years ago)
- Last Synced: 2025-04-23T04:42:57.379Z (9 months ago)
- Topics: chrome-devtools, debugging-tool, electron-app, inspector, nodejs, prototyping
- Language: JavaScript
- Homepage:
- Size: 1 MB
- Stars: 194
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# devtools-playground
Standalone Devtools for prototyping & debugging.

# Features
- Standalone DevTools
- Live reloading
- Support for ES modules (import/export)
- Built on top of electron, which means that both Node.js modules & the Browser's APIs are available
# Install
```
npm i -g devtools-playground
```
# Usage
Run:
```
devtools ./file.js
```
It'll open Devtools and reload automatically on every file change.
### ES Modules
By default, it uses commonJS modules.
But you can enable support for ES module too:
```
devtools ./file.js --esm
```
It uses `@std/esm` under the hood
---
Inspired by [Jam3/devtool](https://github.com/Jam3/devtool)