A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Windows 10 setup (including VS Code debugging)
-
My launch.json file:
{ // Use IntelliSense to learn about possible Node.js debug 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", "type": "node", "request": "launch", "program": "${workspaceRoot}\\js\\electron.js", "stopOnEntry": false, "args": [], "cwd": "${workspaceRoot}", "runtimeExecutable": "${workspaceRoot}\\node_modules\\.bin\\electron", "runtimeArgs": [ ".", "--enable-logging" ], "env": {}, "console": "integratedTerminal", "sourceMaps": false, "outDir": null }, { "name": "Attach", "type": "node", "request": "attach", "port": 5858, "sourceMaps": false, "outDir": null } ] }
-
do you know who it works with visual studio 2015?
-
@aaronaxvig If you enable it to working. You can be add into a step in project for help to other users.
-
@aaronaxvig To run MagicMirror automatically on startup:
- Create a .bat file and put it in the startup folder (Windows Explorer > type “shell:startup” without quotes in the address bar).
- Set the contents of the bat file:
cd your MagicMirror Git repository folder
npm start -
I created a forum account just to say THANK YOU! I was getting auth errors in the node_helper of my module that I could not trace using the browser side tools. Debugging the server side with VS Code got it fixed in 5 minutes flat!