I am developping a custom search API from VuePress static websites and I needed to host it.
Since I have a Cloudways VPS, let's see how to run the REST API.
I am developping a custom search API from VuePress static websites and I needed to host it.
Since I have a Cloudways VPS, let's see how to run the REST API.
The following article is a copy of https://www.freecodecamp.org/news/build-consume-and-document-a-rest-api/, an article written by Germán Cocca.
I used it to learn the basis of API development with NodeJS.
I particularly like the folder structure and empahasis on the architecture.
This is a very short essay about what can you teach about problem-solving to a new developer. But it is not limited to software development, I think.
I will enhance the post in later iterations...
Let's break it down into 5 points
Have you ever wondered if you could skip typing git add /path/to/filename && git commit "my message" && git push
? That's what git aliases are for.
Using the git config
command, we can declare globally the aliases. For example:
Debugging is the life of any developper. It allows you to check when your code doesn't behave... because you gave it the wrong instructions.
Let's dive into how to enable it in Visual Studio Code. It will be quick.
Medium article by Per Harald Borgen