I am building a SPA using DURANDAL and Asp.Net WEB API.
I would like to retrieve a dictionary table (lookup table) and cache it on the client side.. basically have a viewmodel with a
dictionary: ko.observableArray([])
and access that in any other module when needed.
The goal is to avoid reading any of that list from the server during the application's lifetime.
Any ideas (examples are welcome)