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

https://github.com/vicompany/workshop-proxy


https://github.com/vicompany/workshop-proxy

Last synced: about 1 year ago
JSON representation

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).