I'm a software developer at @Jalasoft.
Fan of Javascript. Specially of Meteor and Apollo Stack
@kenji_lozano
THE FASTEST WAY TO BUILD
Meteor is an open source platform for web, mobile and desktop
Library
Framework
Platform
THE FASTEST WAY TO BUILD
Meteor is an open source platform for web, mobile and desktop
Based on client connected Architecture
Websites
Apps
Web Sockets
Minimongo
DDP
Server
Client
Publish & Subscribe
How does it works?
How does it works?
// on the server
Meteor.publish('posts', function() {
return Posts.find({flagged: false});
});
You can think of the publication / subscription system as a funnel that transfers data from a collection on the server (source) to one on the client (destination).
How does it works?
// on the server
Meteor.publish('posts', function(author) {
return Posts.find({
flagged: false,
author: author
});
});
// on the client
Meteor.subscribe('posts', 'bob-smith');
var name = response.name
GET http://myServer/user
SELECT name
FROM users
WHERE id=12345
Users.find(
{ _id: 12345 },
{
fields: { name: 1 }
}
);
Now let's do it in a Meteor way!
DDP
Server
Client
Subscription
Publication
Method
Method
Minimongo
Mongo
Post.insert
Optimistic UI
Post.insert
Ship more with less code.
Build apps for any device.
Integrates technologies that you already use.
12823
26814
508K
12
PACKAGES
STACK OVERFLOW QUESTIONS
UNIQUE INSTALLS
UPCOMMING EVENTS
Thanks to @Urigo! https://github.com/Urigo/angular-meteor
$ meteor create --example angular2-boilerplate myApp
$ cd myApp
$ meteor npm install
$ meteor
...stay tuned with Angular Community and don't miss the upcoming events.