deskscript
v0.1.1
Published
Disclaimer: Under Construction
Readme
DeskScript
Disclaimer: Under Construction
Example
Create a DeskScript project
project/
project/
| - index.ds
| - package.json
| - settings.jsonindex.js
console.log('Hello World');package.json
{
"scripts": {
"start": "deskscript"
},
"dependencies": {
"deskscript": "1.0.0"
}
}settings.json
{
"window": {
"title": "Project"
}
}Launch the Deskscript project
npm install & npm start