https://github.com/vicompany/ecmascript-features
A repository to read about ECMAScript features
https://github.com/vicompany/ecmascript-features
Last synced: 7 months ago
JSON representation
A repository to read about ECMAScript features
- Host: GitHub
- URL: https://github.com/vicompany/ecmascript-features
- Owner: vicompany
- License: mit
- Created: 2020-01-27T10:26:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-02T09:03:29.000Z (over 5 years ago)
- Last Synced: 2025-07-09T17:02:44.295Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 412 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ECMAScript features 
This repository is a collection of all ECMAScript features that needed exploring.
Typical usage is to just browse the repository and see how the code works. If you want to run the code, see [Installation and Usage](#installation-and-usage).
## Installation and Usage
1. Clone or [download](https://github.com/vicompany/ecmascript-features/archive/master.zip) the repository
2. Run `npm install`
3. Run `npm run dev` or run `npm run start` to start a watcher or just run all files respectively
## Contribution
After installing the project, you can add files.
1. Add feature tests
2. Make sure `npm test` is free of errors.
3. Submit a PR into the `master` branch.
- Honour the `ES[0-9]{4}/feature-name/[0-9]{2}-test-name.js` format.
- Keep tests simple.
- The only purpose of the output is to validate the script’s functionality. Try to make it somewhat readable and valuable.