Tutorial posting data to json-server
Continuing from the last tutorial, we had set up json-server and learned how to get mock data from it. In this tutorial, we will post to the json-server. Right now, we have two movies in the...
read moreComparing json-server versus dyson mock server
Last tutorial, we implemented json-server with movies data. Let’s see how that compares with implementing the same thing with dyson mock server. Get dyson installed globally (so that it can...
read moreTutorial on How to Use json-server
In this tutorial, we have install json-server node module to a simple Node app to see how json-server can be used to output json via an URL. So it can be used for mock REST api with test data. npm...
read moreSetting up a simple Node App
Assuming that you have already installed Node and npm, we create a project folder called “simple” … mkdir simplecd simplenpm init Use all the default response to the npm prompts....
read moreHow to configure git to use nano as editor?
To configure git start with the “git config” command. Then use the –global flag to make it persistent for the current user. The full command with the editor option is … git...
read moreHow to create a git alias
Tired of typing “git checkout” all the time. Create a git alias so that you can type “git co” instead by … git config --global alias.co checkout That is two hypens...
read moreVisual Studio Code to allow decorator syntax
You might be getting this lint error … Experimental support for decorators is a feature that is subject to change that is subject to change in a future release. Set the...
read moreTutorial on how to start redis server on Mac
This tutorial, we will learn how to start the redis server on Mac, assuming that you have already got it installed via “brew install redis” or other method found on the internet. You can...
read moreDoes MobX work with Internet Explorer 11
No, MobX 5 does not work with Internet Explorer 11, because MobX 5 use Proxy and requires ES6 compliant browsers. However, Microsoft Edge browser can work with MobX 5. See this chart for...
read moreAll contents are opinions and are copyrighted and may contain display ads and ad links for which site may receive revenues from.
See Terms of Use and Privacy Policy.