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

module-references

v1.0.2

Published

Annotate file references within the source code of your node packages. These references can be scanned for using the dependency graph of a module. This package takes input from module-deps and generates a list of all the references.

Downloads

16

Readme

module-references

Annotate file references within the source code of your node packages. These references can be scanned for using the dependency graph of a module. This package takes input from module-deps and generates a list of all the references (in the same format as module-deps).

reference annotation

Reference annotations are created by placing a require call to a dummy package in your source code. This dummy package does nothing at run-time:

require('static-reference')('./foo.css');
require('static-reference')("./foo.less");
require('static-reference')('./foo-mobile.css', 'filter keyword', 'another filter keyword');

These require calls are scanned for by statically analyzing your source code. Therefore, only a string literal will work properly, for example require('static-reference')('./foo' + '.css'); will be ignored.

This module gives you a list of all the referenced files. The first argument to a reference annotation is the file path relative to the module that contains it (it uses the same algorithm as require.resolve()), all other arguments serve as keywords that you can filter on.

example

var ModuleReferencesStream = require('module-references');
var stream = new ModuleReferencesStream({
    filter: 'css',
    readMode: 'text'
});
stream.pipe(require('JSONStream').stringify()).pipe(process.stdout);
stream.write({
    'id': 'unique id for foo.js',
    'file': '/absolute/path/foo.js',
    'deps': {'./bar.js' : 'unique id for bar'},
    'source': 'require("static-reference")("./foo.css"); otherJavascriptCode();'
});
stream.end({
    'id': 'unique id for bar.js',
    'file': '/absolute/path/bar.js',
    'deps': {},
    'source': 'require("static-reference")("./bar.css"); someMoreJavascriptCode();'
});

This would give you the following output (assuming foo.css and bar.css exist):

[{
    'id': 'unique id for bar.css',
    'file': '/absolute/path/bar.css',
    'source': 'body { background: red; }'
},
{
    'id': 'unique id for foo.css',
    'file': '/absolute/path/foo.css',
    'source': 'p { margin: 20px; }'
}]

api

var ModuleReferencesStream = require('module-references');

var stream = ModuleReferencesStream(opts={})

Return an object transform stream that expects output from module-deps and produces objects for each unique reference found.

Optionally pass in some opts:

  • opts.readMode - Read the referenced files as 'binary' or as 'text'. Passing false disables reading of the referenced files
  • opts.filter - A function (or an array of functions) that should return false if the referenced file should be skipped. Its only argument is an array of filter keywords that were present in the annotation. e.g. function(args) { return args.indexOf('mobile-css') >= 0; }
  • opts.filter - Or, a filter may be defined as a string. In this case it is compiled as a simple boolean expression

filter syntax

If you pass a filter as a string (useful for CLI's) it is compiled as a boolean expression that is very similar to javascript.

It supports the operators &&, ||, !, ==, != as well as grouping (). These operators have the same function and precedence as in javascript. Such an expression is evaluated upon the given arguments and file extension in a reference annotation. Each argument is interpreted as a boolean, the argument is either present (true) or not present (false).

"css && abc && (def || ghj)" will match both

require('static-reference')('./bla.css', 'abc', 'def');

and

require('static-reference')('./bla.css', 'abc', 'ghj');

install

With npm, to get the module do:

npm install module-deps

license

MIT