-
Notifications
You must be signed in to change notification settings - Fork 70
Recommended Development Evironment
Radhakrishna Sanka edited this page Jul 26, 2020
·
1 revision
In order to work with 3DuF we recommend using VSCode - https://code.visualstudio.com/
Plugins:
-
esbenp.prettier-vscode
- Format the code for quality control -
joelday.docthis
- Documentation Generation for the functions -
msjsdiag.debugger-for-chrome
- Debugger Integration for Chrome
Config file for Chrome Debugger:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch index.html",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"file": "${workspaceFolder}/index.html"
}
]
}
In addition to the setup necessary in v1.x, v2.x we recommend the following plugins in VS code to help develop with the VueJS frontend framework.
Plugins:
-
octref.vetur
- VueJS Tools necessary for Frontend development