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

revealing-module-factory-js

v1.0.2

Published

Revealing Module factory pattern.

Downloads

3

Readme

revealing-module-factory-js

A revealing module factory method for easily creating and using the revealing module pattern.

Features:

  • Sets modules on itself (for easy access).
  • Sets modules using Object.defineProperty (sets them as not writable and not configurable).
  • Allows you to access your modules as properties; E.g. myModule.all.your.base etc.;
  • Allows you to fetch/set your modules using namespace strings when calling your revealingModule ('all.your.base' etc.) when calling your revealingModule as a function.
  • Less overhead when requesting your modules since they are just properties descending from your revealingModule (myModule.all.your.base...).
  • Returned revealingModule can be called as a setter-getter (when called with one parameter - sets un-existing namespaces and returns final path in namespace), a getter (when called with one parameter - Returns existing namespaces) or as a setter (when called with 2 parameters - returns itself)

Usage:

Include './dist/revealingModuleFactory.js' as part-of/in your project.

In your code:

const myModule = revealingModulePattern();

myModule instanceof Function === true; // true

// Now you can set namespaces on your module
const things = {},
    thing = {};
    
// ""
myModule('thing', thing);
myModule.thing === thing; // true

// ""
myModule('all.the.things', things);
myModule.all.the.things === things; // true

// Once your namespaces are written they become unsettable 
// (not `writable` or `configurable`)
myModule.all.the.things = function OtherThings() {};

// ""
myModule.all.the.things === things; // true

// Also calls to your module as a setter (called with 
// namespace string and value) return itself
const multiple = {},
      all = {},
      once = {};
      
// ""
myModule('setting', multiple)
        ('things', all)
        ('at', once)
        
// Using myModule call as a getter
myModule('all.the.things') === things; // true

// Setting and getting a namespace all at once
myModule('all.your.base.are.belong.to.us');
  
// Note the initial 'all' in the previous example;  It already 
// exists (was set further up in the script) and gets reused - 
//  doesn't get recreated or overwritten.

Pre-requisites:

Es5+ Browsers

Tests:

  1. $ npm install phantomjs -g
  2. $ npm install
  3. $ npm run tests

License:

GPL v2+ AND