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

top-require

v0.1.0

Published

Require modules from highest module.

Downloads

109

Readme

top-require

Build Coverage Dependencies

Require modules from highest (i.e. loading) module.

It is based hugely on parent-require, but it loads declaration highest in the project hierarchy. That is useful when you have for instance module that require module that require module which populate Mongoose models you want to use in your project.

Most of code/documentation is copy from parent-require.

Install

$ npm install top-require

Usage

top-require addresses an annoying error condition that arises when developing plugins, which have peer dependencies, that are npm link'd into an application.

The problem is best illustrated by example. We'll use a shared package of Mongoose schemas, but the concept applies equally well to any module you plugin to a larger framework.

Develop a Plugin for a Framework

Let's develop a set of shared Mongoose schemas for a user database, packaged as mongoose-schemas-users for reuse by any application that needs to query the database.

var mongoose = require('mongoose');

var UserSchema = new mongoose.Schema(...);

module.exports = UserSchema;

The important bit here is that mongoose is a peer dependency of this package.

Require a Plugin from an App

Now, let's install this package...

npm install mongoose-schemas-users

..and require it within our application:

var mongoose = require('mongoose')
  , schemas = require('mongoose-schemas-users')
  
mongoose.model('User', schemas.UserSchema);

So far, so good.

npm link Plugin for Development

During the course of developing the application, we discover that we need to tweak the schemas we've defined. This is usually easy:

npm link mongoose-schemas-users

We've made some edits, and run the application:

Error: Cannot find module 'mongoose'

WTF?!? This issue arises because mongoose is a peer dependency. Now that it has been npm link'd to a directory that resides outside of the application itself, Node's typical resolution algorithm fails to find it.

Fallback to Parent Require

This is where top-require comes into play. It provides a fallback to require modules from the loading (aka parent) module. Because the loading module exists within the application itself, Node's resolution algorithm will correctly find our peer dependency.

try {
  var mongoose = require('mongoose');
} catch (_) {
  // workaround when `npm link`'ed for development
  var prequire = require('top-require')
    , mongoose = prequire('mongoose');
}

var UserSchema = new mongoose.Schema(...);

module.exports = UserSchema;

With the fallback in place, we can both npm install and npm link this plugin, correctly resolving peer dependencies in both cases.

Tests

$ npm install
$ npm test

Credits

License

The MIT License

Copyright (c) 2014 Lukasz Sielski <http://lukaszsielski.pl/> Copyright (c) 2013 Jared Hanson <http://jaredhanson.net/>