Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
323 views
in Technique[技术] by (71.8m points)

node.js - Is there any way to make an executable file (.exe) from a Nuxt+Node project?

I have a NuxtJS project that requires a NodeJS program running behind for some functions and logic. The project structure is as follows:

api
assets
components
layouts
middleware
pages
plugins
server
static
store
nuxt.config.js
package.json

nuxt.config.js

module.exports =  {
  head: {
    titleTemplate: '%s',
    title: 'Project',
    htmlAttrs: {
      lang: 'en'
    },
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { hid: 'description', name: 'description', content: '' }
    ],
    link: [
      { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
    ]
  },

  css: [
    '@/assets/css/main.scss'
  ],

  plugins: [
  ],

  components: true,

  buildModules: [
    '@nuxtjs/vuetify'
  ],

  modules: [
    'nuxt-socket-io',
    'nuxt-i18n',
    '@nuxtjs/axios',
    '@nuxtjs/auth-next'
  ],

  io: {
    sockets: [
      {
        name: 'main',
        url: process.env.APP_SERVER_URL,
        default: true
      }
    ]
  },

  i18n: {
    locales: [
      {
        code: 'en',
        file: 'en-US.js'
      }
    ],
    lazy: true,
    langDir: 'lang/',
    defaultLocale: 'en'
  },

  serverMiddleware: [
    { path: '/api', handler: '~/api/index.js' },
  ],

  axios: {
    baseURL: process.env.APP_SERVER_URL,
  },

  vuetify: {
    customVariables: ['~/assets/variables.scss'],
    theme: {
      dark: true,
      themes: {
        dark: {},
        light: {}
      }
    }
  },

  build: {
    extend(config) {}
  }
}

package.json

{
  "name": "my-project",
  "version": "1.0.0",
  "private": true,
  "scripts": {
    "dev": "nodemon -w server -w nuxt.config.js server",
    "build": "nuxt generate",
    "start": "cross-env NODE_ENV=production node server",
    "generate": "nuxt generate"
  },
  "dependencies": {
    "@nuxtjs/auth-next": "5.0.0-1611574754.9020f2a",
    "@nuxtjs/axios": "^5.12.5",
    "body-parser": "^1.19.0",
    "core-js": "^3.8.3",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "http": "0.0.1-security",
    "moment": "^2.29.1",
    "nuxt": "^2.14.12",
    "nuxt-i18n": "^6.18.0",
    "nuxt-socket-io": "^1.1.14"
  },
  "devDependencies": {
    "@nuxtjs/vuetify": "^1.11.3",
    "cross-env": "^7.0.3",
    "nodemon": "^2.0.7"
  }
}

server/index.js

require('dotenv').config();

const isProd = process.env.NODE_ENV === 'production'
const http = require('http')
const app = require('express')()
const server = http.createServer(app)
const io = require('socket.io')(server)
const axios = require('axios')

const { Nuxt, Builder } = require('nuxt')
const config = require('../nuxt.config.js');
config.dev = !isProd;

const nuxt = new Nuxt(config)
const { host, port } = nuxt.options.server
if (config.dev) {
    const builder = new Builder(nuxt)
    builder.build()
} else {
    nuxt.ready()
}
app.use(nuxt.render)

server.listen(port, () => {
    console.log(`Server listening on http://${host}:${port}`)
});

// other logic

I need an exe that can be installed in other computers for running the Nodejs server and the Nuxt stuff, like I run the code by npm run dev or npm run build/start in the development computer locally.

I have tried nexe by running nexe -i server but not succeeded. Is there any other way for me to do that?

Thank you.

question from:https://stackoverflow.com/questions/66066951/is-there-any-way-to-make-an-executable-file-exe-from-a-nuxtnode-project

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I think you can take a look at pm2. You can run node server and other stuff with that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...