DEV Community

Discussion on: How is VUE Cli UI made?

Collapse
 
sleepyfran profile image
Fran González

The entire project is open-source if you want to take a look at the real source code, but it's basically a JavaScript app (the UI is a full Vue application!) that connects to a local server running Node. Since Node has full access to the computer its running in, they can manipulate the file system and basically do anything that you can do in a normal Node app.

Collapse
 
wahidn profile image
WahidN

So it's just a Vue app with Node backend? That makes sense! Thank you!