Fatima Ahmed: Thanks to Alan all the way from Sweden to submit this tutorial on how to build a simple note keeping app! Check out the document and the code link here.
Fatima AhmedAlan, I glanced through your document, but not in detail yet. I have some questions. On which editor did you write this code? Is it Visual Studio Code, Webstorm, or which one? So React.js is not a new coding language. It is just presenting JavaScript in... moreAlan, I glanced through your document, but not in detail yet. I have some questions. On which editor did you write this code? Is it Visual Studio Code, Webstorm, or which one? So React.js is not a new coding language. It is just presenting JavaScript in a new way for the browser, right? Your tutorial mentions to install Node.js. So, how is Node.js connected to react.js in this tutorial?
May 14, 2018
Alan DabaghVS code was used, it's got great support for syntax checking and lots of cool plugins.
React.js is a JavaScript framework that compiles down to raw Javascript, it's not a new programming language.... moreVS code was used, it's got great support for syntax checking and lots of cool plugins.
React.js is a JavaScript framework that compiles down to raw Javascript, it's not a new programming language.
Node.js is basically JavaScript on the backend which also comes with a feature called "npm" , a package manager to install various JavaScript libraries and to run scripts with.
In our case we use npm to install brunch globally but to also install dependencies for our app and to run the app in dev mode with the command "npm start". less