scratchtools-dev
v1.0.2
Published
Easily develop ScratchTools with the official ScratchTools development editor!
Readme
Getting Started
Here's how to get started developing ScratchTools with the official package.
Install
Start by installing the scratchtools-dev package from NPM in your terminal.
npm i scratchtools-devIt's that easy. You may also need to install some of the dependencies, so run this too:
npm installAdd scripts
Next, add the scripts for the main page. This part is easy. There should be a package.json file within the ScratchTools extension folder now.
Add this to it:
"scripts": {
"start": "node node_modules/scratchtools-dev/index.js"
}Then, in the terminal, run this:
npm startThe ScratchTools development page should open. It's that easy!
If the page does not open on its own, just go to http://localhost:8080 in your browser (preferably where you have ScratchTools installed).
