I came across https://jskatas.org as a reference to learning JavaScript.
I was wondering if it was a good idea to have a template repository that people could just fork and start learning by fixing the tests within the repository itself ( committing the fixed code and pushing to remote could also introduce learning some git along the way too ).
this way one could show progress and validate whether the solutions are correct with a peer who knows better.
I started using the online version and then found myself not sure whether my changes were accurate ( though I was getting the tests to pass ).
So, I thought why not just clone the repository and then do the tests locally? And as I was navigating the repository is when I got this idea.
I noticed the mention of nobody has nodejs installed globally anymore. While I don't want to argue / contest that notion, I believe that it would be of use for people to be able to just fork a repository, clone it locally, start fixing tests and learn javascript along the way. If they pushed to remote, they could get those tests validated from their peers too.
So, here's my proposal :
- create a separate template repository
- move all the test files ( with the tests failing ) into the repository.
- add a relevant
package.json with relevant packages and scripts ( bonus : we could add scripts per file / category ).
- add a relevant
README to show how to use the repository
... watch how people use it and gain insights to make it better
what do you think?
I came across https://jskatas.org as a reference to learning JavaScript.
I was wondering if it was a good idea to have a template repository that people could just fork and start learning by fixing the tests within the repository itself (
committing the fixed code andpushing toremotecould also introduce learning somegitalong the way too ).this way one could show progress and validate whether the solutions are correct with a peer who knows better.
I started using the online version and then found myself not sure whether my changes were accurate ( though I was getting the tests to pass ).
So, I thought why not just clone the repository and then do the tests locally? And as I was navigating the repository is when I got this idea.
I noticed the mention of nobody has nodejs installed globally anymore. While I don't want to argue / contest that notion, I believe that it would be of use for people to be able to just
forka repository,cloneit locally, start fixing tests and learn javascript along the way. If theypushed toremote, they could get those tests validated from their peers too.So, here's my proposal :
package.jsonwith relevant packages and scripts ( bonus : we could add scripts per file / category ).READMEto show how to use the repository... watch how people use it and gain insights to make it better
what do you think?