All Projects → saltyshiomix → Nuxtron

saltyshiomix / Nuxtron

Licence: mit
⚡ Nuxt.js + Electron ⚡

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Nuxtron

Nuxt Generate Cluster
Multi-threaded generator command for nuxt.js
Stars: ✭ 140 (-17.65%)
Mutual labels:  nuxt
Nuxt Bnhcp
nuxt、express、vue、mysql、redis、nginx、socket.io (实战商城)
Stars: ✭ 1,929 (+1034.71%)
Mutual labels:  nuxt
Nuxt Coreui
💫 NuxtJS + CoreUI Project — Unofficial Nuxt + CoreUI project, free to use boilerplate for every need.
Stars: ✭ 166 (-2.35%)
Mutual labels:  nuxt
Recaptcha Module
🤖 Simple and easy Google reCAPTCHA integration with Nuxt.js
Stars: ✭ 143 (-15.88%)
Mutual labels:  nuxt
Nuxt Socket Io
Nuxt Socket IO - socket.io client and server module for Nuxt
Stars: ✭ 148 (-12.94%)
Mutual labels:  nuxt
Vue Warehouse
A Cross-browser storage for Vue.js and Nuxt.js, with plugins support and easy extensibility based on Store.js.
Stars: ✭ 161 (-5.29%)
Mutual labels:  nuxt
Prismic Module
Easily connect your Nuxt.js application to your content hosted on Prismic
Stars: ✭ 139 (-18.24%)
Mutual labels:  nuxt
Nuxt Env
Inject env vars for your Nuxt app at runtime
Stars: ✭ 169 (-0.59%)
Mutual labels:  nuxt
Nuxt Leaflet
Nuxt module for leafletjs - https://schlunsen.github.io/nuxt-leaflet/
Stars: ✭ 152 (-10.59%)
Mutual labels:  nuxt
Moment Module
Efficient Moment.js integration for Nuxt
Stars: ✭ 164 (-3.53%)
Mutual labels:  nuxt
Vue Soundcloud
🎧 A SoundCloud client built with Vue and Nuxt
Stars: ✭ 141 (-17.06%)
Mutual labels:  nuxt
Laravel Nuxt Js
Build a SPA with Laravel and Nuxt.
Stars: ✭ 146 (-14.12%)
Mutual labels:  nuxt
Vue Stator
Vuex alternative based on Vue.observable()
Stars: ✭ 162 (-4.71%)
Mutual labels:  nuxt
Nuxt Payload Extractor
Nuxt.js module that makes `nuxt generate` command to store html and payload separately.
Stars: ✭ 140 (-17.65%)
Mutual labels:  nuxt
Plainbudget
Minimalist Plain Text Budgeting
Stars: ✭ 167 (-1.76%)
Mutual labels:  nuxt
Nuxtjs.org
Nuxt Documentation Website
Stars: ✭ 1,990 (+1070.59%)
Mutual labels:  nuxt
Actions Gh Pages
GitHub Actions for GitHub Pages 🚀 Deploy static files and publish your site easily. Static-Site-Generators-friendly.
Stars: ✭ 2,576 (+1415.29%)
Mutual labels:  nuxt
Vue Tailwind Picker
🎉 Datepicker component for vue.js build with Tailwind CSS & dayjs date library
Stars: ✭ 170 (+0%)
Mutual labels:  nuxt
Vue People
VuePeople lists and connects Vue.JS developers around the world.
Stars: ✭ 167 (-1.76%)
Mutual labels:  nuxt
Fame
A blog power by spring-boot and vue
Stars: ✭ 162 (-4.71%)
Mutual labels:  nuxt

Build a Nuxt.js + Electron app for speed ⚡

(The screenshot above is a top page of examples/with-javascript.)

Support

nuxtron nuxt
v0.x v2.x

My Belief for Nuxtron

  1. Show a way of developing desktop apps only web knowledge
  2. Easy to use
  3. Be transparent and open to OSS developers

Usage

Install

$ npm install --global nuxtron

Create Application

To create my-app, just run the command below:

$ nuxtron init my-app

Create Application with Template

You can use examples/* apps as a template.

To create the examples/with-typescript app, run the command below:

$ nuxtron init my-app --example with-typescript

Development Mode

Run npm run dev, and nuxtron automatically launches an electron app.

{
  "scripts": {
    "dev": "nuxtron"
  }
}

Production Build

Run npm run build, and nuxtron outputs packaged bundles under the dist folder.

{
  "scripts": {
    "build": "nuxtron build"
  }
}

Build Options

To build Windows 32 bit version, run npm run build:win32 like below:

{
  "scripts": {
    "build": "nuxtron build",
    "build:all": "nuxtron build --all",
    "build:win32": "nuxtron build --win --ia32",
    "build:win64": "nuxtron build --win --x64",
    "build:mac": "nuxtron build --mac --x64",
    "build:linux": "nuxtron build --linux"
  }
}

CAUTION: To build macOS binary, your host machine must be macOS!

Build Configuration

Edit electron-builder.yml properties for custom build configuration.

appId: com.example.nuxtron
productName: My Nuxtron App
copyright: Copyright © 2019 Shiono Yoshihide
directories:
  output: dist
  buildResources: resources
files:
  - from: .
    filter:
      - package.json
      - app
publish: null

For more information, please check out electron-builder official configuration documents.

Examples

See examples folder for more information.

Or you can start the example app by nuxtron init <app-name> --example <example-dirname>.

To list all examples, just type the command below:

$ nuxtron list

examples/custom-build-options

$ nuxtron init my-app --example custom-build-options

examples/with-javascript

$ nuxtron init my-app --example with-javascript

examples/with-typescript

$ nuxtron init my-app --example with-typescript

Develop examples/*

$ git clone https://github.com/saltyshiomix/nuxtron.git
$ cd nuxtron
$ yarn
$ yarn dev <EXAMPLE-FOLDER-NAME>

Related

  • Nextron - ⚡ Electron + NEXT.js ⚡
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].