Meteor: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
Line 69: Line 69:
==Meteor on [[Raspberry Pi]]==
==Meteor on [[Raspberry Pi]]==
http://www.ianbuildsapps.com/running-meteor-js-on-raspbian-on-the-raspberry-pi/
http://www.ianbuildsapps.com/running-meteor-js-on-raspbian-on-the-raspberry-pi/

=Production Deployment=
==With MUP (Meteor Up)==

Install mup
<pre>
npm install -g mup
</pre>



=Create a package=
=Create a package=
Line 74: Line 83:
* https://atmospherejs.com/i/publishing
* https://atmospherejs.com/i/publishing
* https://meteor.hackpad.com/Unipackage-tvas8pXYMOW
* https://meteor.hackpad.com/Unipackage-tvas8pXYMOW



=Performance Monitoring=
=Performance Monitoring=

Revision as of 08:19, 11 November 2015

https://www.meteor.com/

Web (server and client) framework.

Includes :

Remark: Meteor only supports i686 and x86_64 for now but ...

Extra:

Quickstart

Doc is here https://docs.meteor.com/#/basic/quickstart

Install Meteor:

curl https://install.meteor.com | /bin/sh

Create and run a new project:

meteor create myapp
cd myapp

Add packages (listed on http://www.atmospherejs.com/)

meteor add coffeescript
meteor add spinner
meteor add accounts-ui accounts-facebook accounts-google accounts-github accounts-twitter


meteor add meteor-platform
meteor add mrt:paypal
meteor add mrt:loading

meteor list 

meteor search paypal
meteor show mrt:paypal

meteor list 

meteor remove accounts-github

meteor list


Launch the app in Meteor

meteor

Browse http://localhost:3000/

Deployment sur le cloud Meteor

meteor deploy myapp.meteor.com

Meteor on Raspberry Pi

http://www.ianbuildsapps.com/running-meteor-js-on-raspbian-on-the-raspberry-pi/

Production Deployment

With MUP (Meteor Up)

Install mup

npm install -g mup


Create a package

Performance Monitoring

File:KadiraDashboard001.png
Kadira dashboard monitoring

Kadira is a performance monitoring for Meteor.

https://kadira.io/#features

Installation

Créez un compte gratuit via votre id Meteor.

meteor add meteorhacks:kadira
export KADIRA_APP_ID=YOUR_ID 
export KADIRA_APP_SECRET=YOUR_APP_SECRET

Books