Reputation: 453
Is it possible to use Vue.js and express JS simultaneously in an project having electron JS? How is that possible? I have a project which is already running in Vue.js and electron JS but how do I implement express JS in current project?
Upvotes: 1
Views: 1343
Reputation: 96
You can use
let express = require('./express') // Your express app
https://gist.github.com/maximilian-lindsey/a446a7ee87838a62099d
To add express in your project and you can use electron-vue
.
Boilerplate to add vue to you project: https://github.com/SimulatedGREG/electron-vue
Upvotes: 2