CaptSaltyJack
CaptSaltyJack

Reputation: 16025

Any way to deploy a Meteor web app as a standalone self-contained package?

I'm wondering if there's a way to deploy Meteor apps in a way that someone could download it, unzip it, then run it so that basically it runs Mongo, runs a Node.js web server, and opens up the browser to (e.g.) http://localhost:4040 where the app will then run. All in one shot, fully self-contained. So no need to put it on a Linux server, install Mongo, set env vars, all that stuff.

Upvotes: 1

Views: 1624

Answers (1)

Kifir
Kifir

Reputation: 142

I think this could be possible with Electron (formerly Atom-Shell). There is tutorial on medium.com and a package called meteor-electron.

Also check out existing questions

  1. Building a pure offline Meteor app
  2. Desktop applications with Meteor.js

UPDATE!

  1. Electrometeor - Desktop Applications w/ Electron + Meteor

Upvotes: 2

Related Questions