Weekend Reader: May 25, 2012
Suggested reading material revolving around web development and other nerdery. Read more »
We make it possible for you to build serverless applications with our secure, scalable web APIs for web and mobile development.
Social timelines, checkins, collaborative documents, retail POS, trading, and real-time purchase orders are just a few of the possibilities.
Our Identity service provides secure registration and login for your applications. Our Messaging service allows you to share data in real-time across multiple devices.
var spire = new Spire();
// Get the application from the spire.io API
spire.getApplication('your-app-key', function(error, application){
// this should come from some kind of user input
var member = {
login: 'john@test.com',
password: 'johnspassword'
};
// create a member
application.createMember(member, function(err, member){
console.log('member created!', member);
});
// try to authenticate an existing member
application.authenticateMember(member, function(err, member){
console.log('member authenticated!', member);
});
});
Our Identity service provides secure registration and login for your applications.
Sign me up! Pricing Info »// create a new instance of
var spire = new Spire();
// don't ever embed your account secret directly like this
// use our Identity API instead ...
spire.start('your-account-secret', function(error){
// add a listener to fire when new messages are received
spire.session.subscribe('my channel', {last:'now'}, function(messages){
$(messages).each(function(i, message){
$('body').append("<p>" + message + "</p>");
});
});
// publish a message and take advantage of the optional callback
application.publish('my channel', 'hello serverless world!');
});
Our Messaging service allows you to share data in real-time across multiple devices.
Sign me up! Pricing Info »Suggested reading material revolving around web development and other nerdery. Read more »
A look back at the LA Open Source Sprint we hosted, by organizer Daniel Greenfeld Read more »
Suggested reading material revolving around web development and other nerdery. Read more »
How Farmhouse Conf and Taco Conf empowered their attendees to create their own experiences. Read more »
Suggested reading material revolving around web development and other nerdery. Read more »
A Ruby client library for spire.io.
A JavaScript client library for spire.io.
A Java client library for spire.io.