A RESTful API for St Ouses
For no reason at all I want to describe a RESTful protocol based on HTTP + JSON for a made-up scenario. Read more
For no reason at all I want to describe a RESTful protocol based on HTTP + JSON for a made-up scenario. Read more
A quick note on using partial URLs in my hypothetical JSON-based API. Read more
I have started building a toy web application to give myself something to try out some of these new-fangled JavaScript frameworks like React and Redux. But first I needed a fake data server to supply the data for it to serve. Read more
I have started building a toy web application to give myself something to try out some of these newfangled JavaScript frameworks like React and Redux. Read more
With any non-trivial bit of code it is useful to be able to test the
parts in isolation before trying to assemble them in to the final
program. In the Python world you use a standard library called
unittest
for this (other testing libraries are available). In
JavaScript there are many competing test frameworks, all with daft
names.
Read more