`ember-cli-proxify`, demo addon that uses ES6 Proxies to make `.get()` obsolete

Hello Everyone!

I want to share something I’ve written. Its really just a demo addon, and I don’t recommend to use it in production but it shows what ES6 proxies will can for us.

Its on npm and here is the git repo.

Theoretically you can just install it and use it:

Ember.Object.extend({
  test() {
    this.test = "foo"
  }
});

Greetings,

Lux