Code Sandbox is a good place to play with your ReactJS samples.
I was able to add couple of pages in no time: https://codesandbox.io/s/compassionate-bhaskara-wbt24
Saturday, March 21, 2020
Learning topics for a newbie
Mac command line (terminal) basics:
https://github.com/fonnesbeck/Bios6301/wiki/Mac-OS-X-Command-Line-Tutorial
Windows DOS basic commands:
http://people.uncw.edu/pattersone/121/labs/L1_MSDOS_Primer.pdf
Git introduction:
https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners
https://www.edureka.co/blog/git-tutorial/ (I love the diagram in this tutorial)
https://kaloraat.com/articles/learn-git-from-scratch
Deploy a static HTML web site using Git Pages:
https://pages.github.com/
Learning HTML, CSS, JavaScript and SQL:
https://www.w3schools.com/
https://dev.to/devmount/8-games-to-learn-css-the-fun-way-4e0f
https://github.com/fonnesbeck/Bios6301/wiki/Mac-OS-X-Command-Line-Tutorial
Windows DOS basic commands:
http://people.uncw.edu/pattersone/121/labs/L1_MSDOS_Primer.pdf
Git introduction:
https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners
https://www.edureka.co/blog/git-tutorial/ (I love the diagram in this tutorial)
https://kaloraat.com/articles/learn-git-from-scratch
Deploy a static HTML web site using Git Pages:
https://pages.github.com/
Learning HTML, CSS, JavaScript and SQL:
https://www.w3schools.com/
https://dev.to/devmount/8-games-to-learn-css-the-fun-way-4e0f
Tuesday, March 10, 2020
OKTA
Get quick and robust authentication by adding one of OKTA's SDKs to your app or API service.
https://developer.okta.com/docs/
Build user registration with NodeJS, React, and Okta:
https://developer.okta.com/blog/2018/02/06/build-user-registration-with-node-react-and-okta
may be another good read??: https://developer.okta.com/code/react/okta_react/
https://developer.okta.com/docs/
Build user registration with NodeJS, React, and Okta:
https://developer.okta.com/blog/2018/02/06/build-user-registration-with-node-react-and-okta
may be another good read??: https://developer.okta.com/code/react/okta_react/
JavaScript Playground, Sandbox
You can use this page where you write the code and check the result immediately:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
Monday, March 9, 2020
Build Rest API with NodeJS
Ain't this article cute? (with all the pictures, icons, emojis):
https://dev.to/lenmorld/quick-rest-api-with-node-and-express-in-5-minutes-336j (my 5 stars to this author)
Golden statement from the author: Rest API means providing an API to clients via HTTP Methods
https://www.positronx.io/build-secure-node-js-mongodb-express-restful-api-from-scratch/
Also, other useful links while practicing these exercises:
https://medium.com/@alexishevia/using-cors-in-express-cac7e29b005b
All in all, to overcome the CORS issue while playing around with express & rest api:
npm install cors
In server.js...
let cors = require('cors')
server.use(cors())
This would set the Access-Control-Allow-Origin: *
https://alligator.io/react/axios-react/
https://dev.to/lenmorld/quick-rest-api-with-node-and-express-in-5-minutes-336j (my 5 stars to this author)
Golden statement from the author: Rest API means providing an API to clients via HTTP Methods
https://www.positronx.io/build-secure-node-js-mongodb-express-restful-api-from-scratch/
Also, other useful links while practicing these exercises:
https://medium.com/@alexishevia/using-cors-in-express-cac7e29b005b
All in all, to overcome the CORS issue while playing around with express & rest api:
npm install cors
In server.js...
let cors = require('cors')
server.use(cors())
This would set the Access-Control-Allow-Origin: *
https://alligator.io/react/axios-react/
Thursday, March 5, 2020
ReactJS - Hey, don't forget to read the documentation
Good documentation helps to understand the concepts faster. If you are new to ReactJS, this is one of the best pages to begin learning: https://reactjs.org/docs/getting-started.html
Subscribe to:
Posts (Atom)