So I just finished making a fully RESTful JSON API for a User in node. When you visit http://localhost:8080/user/create
you get what you would normally expect- a new User which is then stored in a database, in my case mongoDB.
{
"createdAt": Date(),
"updatedAt": Date(),
"id": 1
}
My experience lies in server-side programming but I'm trying to get into Backbone.js. Can anyone point me in the right direction or show me how to create a very simple Backbone User Model and View for registering a User?