https://github.com/vicompany/workshop-proxy
https://github.com/vicompany/workshop-proxy
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/vicompany/workshop-proxy
- Owner: vicompany
- Created: 2018-11-12T14:13:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T10:55:41.000Z (over 7 years ago)
- Last Synced: 2025-01-03T18:15:22.972Z (over 1 year ago)
- Language: JavaScript
- Size: 70.3 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workshop Proxy 🤘
Howdy! This is a mini-workshop about ES2015’s `Proxy`.
## What you will learn
- How to use `Reflect`
- How to wrap objects in a `Proxy`
- Practical use-cases like loggers
- Extend existing objects with magical features 🦄
## Prerequisites
- You are familiar with JavaScript (ES2015+)
- [Node.js and npm](https://nodejs.org/)
## Getting started
To get started, you will have to download the project and install it’s dependencies. Run the following commands:
```shell
# Copy the repository
git clone https://github.com/vicompany/workshop-proxy
# Navigate the the workshop directory
cd workshop-proxy
# Install all dependencies
npm install
```
That is all!
## Introduction
Now we’re all set up, you can start at the [introduction](docs/introduction.md).