Meteor: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:


'''Remark: Meteor only supports i686 and x86_64 for now'''
'''Remark: Meteor only supports i686 and x86_64 for now'''

Extra:
* Meteor Pad http://meteorpad.com/pad/


=Quickstart=
=Quickstart=

Revision as of 09:29, 18 December 2014

https://www.meteor.com/

Web (server and client) framework.

Includes :

Remark: Meteor only supports i686 and x86_64 for now

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

Create a package

Books