Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcloupias/js-playground
Playground to learn javascript
https://github.com/marcloupias/js-playground
es6 functional-programming javascript learning-by-doing
Last synced: 1 day ago
JSON representation
Playground to learn javascript
- Host: GitHub
- URL: https://github.com/marcloupias/js-playground
- Owner: MarcLoupias
- License: isc
- Created: 2017-08-23T21:15:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-07T02:08:14.000Z (over 3 years ago)
- Last Synced: 2024-04-14T23:15:08.373Z (10 months ago)
- Topics: es6, functional-programming, javascript, learning-by-doing
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Javascript Playground
A set of js small projects just to play with the language and learn things.
## tools
I am currently using **Node.js** `6.14.4` and **npm** `6.2.0`
Most of subprojects are using [`npx` tool](https://github.com/zkat/npx) and [npm `node` package](https://registry.npmjs.org/node/) to set the wanted node version, example :
```javascript
// ...
"scripts": {
"run-closure-basic": "npx -p node@latest -- node closure-basic-example",
"run-closure-private": "npx -p node@latest -- node closure-emulating-private-methods"
},// ...
```
## sources
Douglas Crockford "Javascript: The Good Parts" (2008) ISBN "978-0-596-51774-8"
Mattias Petter Johansson [Fun Fun Function YouTube channel](https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q)
Eric Elliott [medium.com publications](https://medium.com/@_ericelliott)
Christophe Porteneuve [ES6+ maintenant ! - Devoxx France 2016](https://www.youtube.com/watch?v=KJzlllc7Jq8&t=1096s)
MDN web docs [for JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
TypeScript docs [www.typescriptlang.org/docs](https://www.typescriptlang.org/docs/home.html)