Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/beamanator/just-to-learn

Repo for testing different types of coding projects
https://github.com/beamanator/just-to-learn

Last synced: about 1 month ago
JSON representation

Repo for testing different types of coding projects

Awesome Lists containing this project

README

        

# Just-To-Learn

This Repo will be for random test scripts & learning stuff

# Useful Links:

Node.js:
1) Net Ninja tutorial (episode 7 of 37) - https://www.youtube.com/watch?v=9UaZtgB5tQI
2) 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](https://github.com/firebase/firebase-functions/issues/84))

Discord.js:
1) Main Docs - https://discord.js.org/#/
2) My Apps (on discordapp.com) - https://discordapp.com/developers/applications/me
3) Nice "Getting Started" guide - https://anidiots.guide/

React.js:
1) create-react-app: https://github.com/facebookincubator/create-react-app
2) Introducing JSX: https://reactjs.org/docs/introducing-jsx.html
3) Rendering Elements: https://reactjs.org/docs/rendering-elements.html
4) Components & Props: https://reactjs.org/docs/components-and-props.html
5) Listenable Events: https://reactjs.org/docs/events.html

Other:
1) A file with the name `Aux.js` will not be handled well in Windows. Don't do it!

# Useful js tricks:

ES7:
1) To safely copy an object (including arrays), use let newObj = {...oldObj} / [...oldArr] - this way, newObj is not tied to oldObj at all.