npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

es6-interface

v3.2.1

Published

this module helps you build interfaces for es6 class

Downloads

1,084

Readme

es6-interface

This module creates extendable ES6 Classes from method signatures that can be defined in objects or string lists, resulting in something similar to class Interfaces.

It will throw an exception, at runtime, if the implementation class do not implement all methods with the same arguments declared in the interfaces.

Notice: because the implementation relies on code reflection methods, it might not work on minified/uglified version of your code, like those generated in the production build phase by some frontend frameworks.

Quick Start

const Interface = require("es6-interface");

const MyInterface1 = {
  requiredMethod1({ arg1, arg2 }) {}
}

const MyInterface2 = new Set[
  "requiredMethod2({ arg1, arg2 })",
];

class MyClass extends Interface(MyInterface1, MyInterface2) {
  requiredMethod1({ arg1, arg2 }) {
     console.log("Hello from requiredMethod1");
  }

  requiredMethod2({ arg1 }) {
     console.log("Hello from requiredMethod2");
  }
}

This code will throw an exception:

MyClass must implement requiredMethod2({arg1,arg2}) methods

Limitations

  • works on NodeJS version 6+,
  • works only on modern web browsers,
  • tested only on NodeJS

Installing

npm install es6-interface --save

Declaring an interface

There are 3 ways to declare an interface:

  • Set: const IFoo = new Set["method1(arg1)","method2(arg1)"]
  • Array: const IFoo = ["method1(arg1)","method2(arg1)"]
  • Object: const IFoo { method1() {}, method2() {} }

Also, an Interface can extend one parent class.

Examples

First we start with a simple 1 interface implementation

One interface implementation

const Interface = require('es6-interface')
const testInterface1 = {
    required1: function(arg1) {
    }
};
class testClass extends Interface(testInterface1) {
  constructor() {
    super()
  }
}

new testClass() // now we will get an error that we need to implement required1(arg1) method

Multi interface implementation

const Interface = require('es6-interface');
const testInterface1 = {
    required1(arg1) {}
};
const testInterface2 = {    
    required2(arg1, arg2) {},
    required3({arg1, arg2, arg3}) {}
};
class testClass extends Interface(testInterface1,testInterface2) {
  constructor() {
    super()
  }
}

new testClass() // now we will get an error that we need to implement required1(arg1) required2(arg1,arg2) required3({arg1,arg2,arg3}) methods

Multi interface with class inheritance

const Interface = require('es6-interface');
const testInterface1 = {
    required1(arg1) {}
};
const testInterface2 = {    
    required2(arg1, arg2) {},
    required3({arg1, arg2, arg3}) {}
};
const testInterface4 = {
    required4({arg1, arg2, arg3}, arg4) {}
};
class parentClass {
    constructor() {}  
    required4({arg1, arg2, arg3}, arg4) {}
}
class testClass extends Interface(testInterface1,testInterface2,testInterface4,parentClass) {
  constructor() {
    super()
  }
}

new testClass() //  we will still get an error for no implement required1(arg1) required2(arg1,arg2) required3({arg1,arg2,arg3}) methods as we get required4 from our parent class

Next development tasks

  • improve performance
  • better error messages

Tests

npm test