localREST 本地REST拦截器和内存存储。模拟REST'full http后端
本地REST服务器和xhr拦截器这个JavaScript库提供了一个REST API服务器的模拟实现。它取代了XMLHttpRequest对象并基本上拦截了来自您的应用程序的所有XHR调用。所有数据都将保存在内存和/或本地存储中。
用法
启动服务器:
// Create new LocalRESTServer instance
var localServer = new LocalRESTServer();
// Start interceptor
// NOTE! It will suppress all your XHR calls from your app
localServer.start({
endpoints: ['https://api.github.com/'], // Specify endpoints
});
用户评论