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

node-association

v0.0.9

Published

a frame work of popular npm modules for building mongo express based application

Downloads

22

Readme

node-association

A few base class to extend from, and a class finder system to find those classes

Installation

npm install --save node-association

ClassFinder

const { ClassFinder } = require('node-association')

Class to be found should be organized inside of a folder in the root directory of the node project For Example we would like to create a series of services where each filer is a Service. Folder should be named using lowercase pluralized version of the class type. Files should be organized in the below manor

root
|- services
   |- AService.js
   |- AnotherService.js
   |- Namespace
      |- YetAnotherService.js
      |- AlternativeNaming.js

Based on the above example to find AService find anywhere in the application by:

ClassFinder.classFor('A', 'Service')

class file naming is case sensitive

Finding AnotherService:

ClassFinder.classFor('Another', 'Service')

Finding YetAnotherService with the namespacing:

ClassFinder.classFor('Namespace::YetAnother', 'Service')

Namespace is also case sensitive

Finding AlternativeNaming:

ClassFinder.classFor('AlternativeNaming', 'Service')

If desired files can omit the Service portion of the naming.

Too actually require the classes, having is the proper commonjs module exports is also required. Each of the classes may either have the class be the default export e.g.

module.exports = class AService {

}
export default class AService {

}

It is also possible to export the class as an named property e.g.

class AService {}
module.exports = {
  AService
}
class AService {}
export AService

The naming of the name export follows the same rules as file naming. It is case sensitive, and the name of the actual class type can be omitted

Presenter

const { Presenter } = require('node-association')

A presenter is a base class that can be extended to wrapper both async and sync functionalities the key performer of the presenter is the instance execute method

class Executer extends Presenter {
  execute() {
    console.log("HELLO")
  }
}
const anExecuter = new Executer
(async () => {
  await anExecuter
})() // will print HELLO

the execute function can be an async function or standard function with callback or error first callback.

Mixer

const { Mixer } = require('node-association')

A mixer is a base class that provides the mixin static method to adding mixin functionality. Mixins will override all static and instance methods except constructor will be copied over to the class prototype

class AClass extend Mixer {}
class AMixin {}
AClass.mixin(AMixin)