• Stars
    star
    219
  • Rank 181,133 (Top 4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 6 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

⚡ Nuxt.js + Electron ⚡

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

More Repositories

1

nextron

⚡ Next.js + Electron ⚡
TypeScript
3,908
star
2

ark

An easiest authentication system on top of NestJS, TypeORM, NEXT.js(v9.3) and Material UI(v4).
TypeScript
257
star
3

react-ssr

React SSR as a view template engine
TypeScript
251
star
4

create-nextron-app

Create nextron (NEXT.js + Electron) apps in one command ⚡
JavaScript
60
star
5

webpack-typescript-react-starter

Webpack + TypeScript + React = ❤️
JavaScript
59
star
6

nest-crawler

An easiest crawling and scraping module for NestJS
TypeScript
56
star
7

nestpress

A production ready personal blogging system on top of NestJS and NEXT.js
TypeScript
41
star
8

rollup-typescript-react-starter

Rollup + TypeScript + React = ❤️
JavaScript
39
star
9

nextjs-redux-todo-app

A minimal todo app with NEXT.js on the redux architecture
TypeScript
28
star
10

react-ssr-nestjs-starter

An example of @react-ssr/nestjs-express
TypeScript
23
star
11

gfm-preview

Preview your markdown with GitHub API in real time 🎉
JavaScript
19
star
12

web-master

Web mastering tools for my personal services
TypeScript
13
star
13

nerv-ie8-boilerplate

A minimalistic boilerplate of NervJS with IE8+ and React 16 compatibility ⚡
JavaScript
10
star
14

markdown-viewer-for-firefox

[NO MAINTENANCED] GitHub flavored Markdown Viewer for **OLD** Firefox
CSS
10
star
15

LGTMify-extension

Looks Good To Me <3
TypeScript
10
star
16

tiny-pro-tips-for-windows

Tiny but pro tips for Windows
9
star
17

node-npx

A tiny npx alternative for Node.js, which executes local npm package binaries
TypeScript
7
star
18

vue-jwt-auth-example

A starter example of Vue + Vuex + JWT Authentication
TypeScript
6
star
19

editify

A pure implementation of WYSIWYG HTML editor all we needed
TypeScript
5
star
20

resolve-as-bin

Resolve a local npm package as the absolute binary path
TypeScript
5
star
21

yark

Yet another easiest authentication system on top of NestJS, prisma2, react-ssr and Material UI
TypeScript
4
star
22

viteron

⚡ vite + electron ⚡
TypeScript
4
star
23

objectio

A JavaScript object getter and setter with string literals ⚡
TypeScript
3
star
24

react-ssr-jsx-starter

An example of @react-ssr/express
JavaScript
3
star
25

react-ssr-tsx-starter

An example of @react-ssr/express
TypeScript
3
star
26

react-ssr-redux-todo-app

A redux todo example on top of @react-ssr/express
TypeScript
2
star
27

saltyshiomix

1
star
28

create-viteron-app

Create viteron (vite + electron) apps in one command ⚡
JavaScript
1
star