Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I would like to know if there is any free leaderboard libraries for web games developed in HTML5/JS (as openfeint is for iPhone, Android)

I found this http://www.appmobi.com/, but it seems the leaderboard APIs which are in BETA is not free.

share|improve this question

4 Answers

Clay.io does this as well:

Info Page: http://clay.io/development-tools
Documentation: http://clay.io/docs/leaderboards

Basic implementation is:

var leaderboard = new Clay.Leaderboard( { id: 'some-id' } );
leaderboard.post( { score: 500 } ); // Post a score of 500
leaderboard.show(); // Show the list of high scores

Of course, it's very customizable - that's just what's required to get it going.

share|improve this answer

There is a new open source initiative by the creators of Open Feint. It's called Open Kit (http://openkit.io/) and it's open and free as they come.

share|improve this answer

I would point you to http://tapjs.com

Been thinking of implementing this on a project of mine. Haven't done a lot of research though. Have a look.

share|improve this answer

I integrated playtomic framework with my project. Its very simple to use. Doc can be found at: https://playtomic.com/api/html5

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.