This Repo will be for random test scripts & learning stuff
Node.js:
- Net Ninja tutorial (episode 7 of 37) - https://www.youtube.com/watch?v=9UaZtgB5tQI
- Node version manager (nvm-windows) - https://github.com/coreybutler/nvm-windows
- Install here: https://github.com/coreybutler/nvm-windows/releases (nvm-setup)
- For Firebase, install node version 6.11.5 (6.11.1 doesn't work - reference)
Discord.js:
- Main Docs - https://discord.js.org/#/
- My Apps (on discordapp.com) - https://discordapp.com/developers/applications/me
- Nice "Getting Started" guide - https://anidiots.guide/
React.js:
- create-react-app: https://github.com/facebookincubator/create-react-app
- Introducing JSX: https://reactjs.org/docs/introducing-jsx.html
- Rendering Elements: https://reactjs.org/docs/rendering-elements.html
- Components & Props: https://reactjs.org/docs/components-and-props.html
- Listenable Events: https://reactjs.org/docs/events.html
Other:
- A file with the name
Aux.js
will not be handled well in Windows. Don't do it!
ES7:
- To safely copy an object (including arrays), use let newObj = {...oldObj} / [...oldArr] - this way, newObj is not tied to oldObj at all.