Aryesh
Aryesh

Reputation: 453

Using express JS and Vue.js in electron Framework

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

Answers (1)

Ashkan haghshenas
Ashkan haghshenas

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

Related Questions