Posts

Showing posts from August, 2021

Javascript Notes part-1 (NodeJS,Node-fetch,Axios)

Image
Useful : 1] JS engines -  https://youtu.be/BMKWdLX9w3M  2] Check if node and npm are installed in terminal : node -v npm -v 3] If you run the below command in the folder which has the package.json file,then npm will read the package.json file and install all the packages at once. npm install 4] Open Vscode in current directory code . --------------------------------------------------------------------------------------------------------------- JavaScript was initially created to “make web pages alive”. The programs in this language are called scripts.They can be written right in a web page’s HTML and run automatically as the page loads. Javascript is a interpreted language , JavaScript is not a class-based object-oriented language instead it is a Proto-type based language. History of Javascript   ( Useful  : 1]  Click ) In 1989 the world wide web (WWW) was invented with the purpose to improve information sharing between universities and science instit...