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 🙏

© 2026 – Pkg Stats / Ryan Hefner

frank-native-core

v2.0.17

Published

make oop standard

Readme

frank-native-core

Usage

Redesign the management about JavaScript prototype chain inheritance,Make every instance has independent prototype chain. In other words:make inheritance like Java.

Orignal oop code:

function Parent(){
 
    var data;
 
    this.getData = functin(){
 
        return data;
 
    };
 
    this.setData(arg){
 
        data = arg;
 
    };
 
};

  
function Child(){};
 
Child.prototype = new Parent();
 
var b = new Child();
 
var c = new Child();
 
b.setData("b");
 
c.setData("c");
 
console.log("b:"+b.getData());//"b:c", incorrect
 
console.log("c:"+c.getData());//"c:c", correct

Now oop code

 const Frank = require("require");

 const Parent = Frank.buildType("Parent").classBody(function(){

   var data;

   this.getData = functin(){

       return data;

   };

   this.setData(arg){

       data = arg;

   };

}).toClass();

const Child = Frank.buildType("Child").extendsFrom(Parent).toClass();


var b = Frank.newInstance(Child);//or Child.newInstance() or new Child();

var c = Frank.newInstance(Child);//or Child.newInstance() or new Child();

b.setData("b");

c.setData("c");

console.log("b:"+b.getData());//"b:b" correct

console.log("c:"+c.getData());//"c:c" correct

Developing

const Frank = require("frank-native-core");

const SuperClass = function () {};

const Person = Frank.buildType("Person").extendsFrom(SuperClass).classBody(function () {

   this.name = Frank.FrankUtils.getter_setter();

   this.age = Frank.FrankUtils.getter_setter();

   this.job = Frank.FrankUtils.abstract4override;

   this.say = function () {

       return "I am a " + this.job() + ", " + this.name() + " , " + this.age() + " year-old.";

   };

}).toClass();

const Student = Frank.buildType("Student").extendsFrom(Person).classBody(function () {

   this.job = function () {

       return "student";

   }

}).toClass();

const Teacher = Frank.buildType("Teacher").extendsFrom(Person).classBody(function () {

   this.job = function () {

       return "teacher";

   }

}).toClass();

var student = Frank.newInstance(Student);

var teacher = Frank.newInstance(Teacher);

student.name("Tom").age(20);

teacher.name("Lili").age(30);

console.log("student.isInstance(   SuperClass)  :  " + student.isInstance(SuperClass);

console.log("student.isInstance(       Person)  :  " + student.isInstance(Person);

console.log("student.isInstance(      Student)  :  " + student.isInstance(Student);

console.log("Student.isAssignableFrom( Person)  :  " + Student.isAssignableFrom(Person);

console.log("Student.isAssignableFrom(Student)  :  " + Student.isAssignableFrom(Student);

console.log("teacher.isInstance(   SuperClass)  :  " + teacher.isInstance(SuperClass);

console.log("teacher.isInstance(       Person)  :  " + teacher.isInstance(Person);

console.log("teacher.isInstance(      Teacher)  :  " + teacher.isInstance(Teacher);

console.log("Teacher.isAssignableFrom( Person)  :  " + Teacher.isAssignableFrom(Person);

console.log("Teacher.isAssignableFrom(Teacher)  :  " + Teacher.isAssignableFrom(Teacher);

console.log("teacher.isInstance(      Student)  :  " + teacher.isInstance(Student);

console.log("teacher.isInstance(       Object)  :  " + teacher.isInstance(Object);

console.log(student.say());

console.log(teacher.say());

output logs:

student.isInstance(   SuperClass)  :  true
student.isInstance(       Person)  :  true
student.isInstance(      Student)  :  true
Student.isAssignableFrom( Person)  :  true
Student.isAssignableFrom(Student)  :  false
teacher.isInstance(   SuperClass)  :  true
teacher.isInstance(       Person)  :  true
teacher.isInstance(      Teacher)  :  true
Teacher.isAssignableFrom( Person)  :  true
Teacher.isAssignableFrom(Teacher)  :  false
teacher.isInstance(      Student)  :  false
teacher.isInstance(       Object)  :  true
I am a student, Tom , 20 year-old.
I am a teacher, Lili , 30 year-old.

API

  1. Type: Frank.buildType(className:string)
  2. Type: Frank.FrancFactory.buildType(className:string)
  3. Type: Type.extendsFrom(clazz:Function/Class/Constructor)
  4. Type: Type.classBody(func:Function/Class/Constructor)
  5. Class: Type.toClass()
  6. FrankBasic: Class.newInstance()
  7. FrankBasic: Frank.newInstance(Class)
  8. Boolean: Class.isAssignableFrom(clazz:Function/Class/Constructor)
  9. Boolean: FrankBasic.isInstance(clazz:Function/Class/Constructor)
  10. FrankBasic.superApply(methodName,arguments)

Tools

Created with Nodeclipse (Eclipse Marketplace, site)

Nodeclipse is free open-source project that grows with your contributions.