Step 2 – defining the API

We're going to add some backend code in Ruby so that we have an API server for our view to connect to. This will allow us to save our todo list between browser sessions. It will also lay the foundation for many new features that we might want to add in the real world, such as sharing lists with other people, user management, and sending e-mail reminders about unfinished todos.

So where do we start with our backend code? With BDD, we keep going from the outside in. We'll just make a small change to our AngularJS service to rely on an HTTP API. That will give us a list of endpoints that our API server needs to handle and a good starting place for our work on the backend. This is one of the benefits of BDD. It points the ...

Get RSpec Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.