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

dependability

v0.0.3

Published

Dependable ordering of JS & CSS files during build and dynamically during development.

Downloads

14

Readme

dependability

Dependable ordering of JS & CSS files during build and dynamically during development.

Getting started

Given two files: main.js and component.js. If order doesn't matter, do nothing. If you main.js needs component.js first simply add // tb_require("./component.js") to main.js.

To generate the order of files use list:

var dependability = require('dependability');
dependability.list(__dirname + "/src", { include: 'js' }, function(error, files){
    console.log("Files:", files); 
});

Or to merge the files together (e.g. to write to disk) use merged:

dependability.merged(__dirname + "/src", { include: 'js' }, function(error, javascript){
    fs.write(__dirname + "/build/output.js", javascript, fucntion(err){
        console.log("Built.");
    }); 
});

During development it's helpful to have the individual files in your browser's debugger. To make this easier dependability provides loaderScript to generate a script that will load the scripts in order.


http.createServer(function(req, res){
    if(req.url == "/myjavascript") {
        dependability.loaderScript(__dirname + "/src", { include: 'js', baseUrl: "/"  }, function(err, output){
            var out = new Buffer(output);
            res.writeHead(200, {
                "Content-Type": "application/javascript",
                "Content-Length": out.length
            });
            res.end(out);
        });
    } else {
        // deliver javascript files, e.g. using send()
    }
});

Using with express

dependability provides two helper functions to make using express easier.

loaderScriptExpress which uses loaderScript, and can be used like:

app.use(express.static(path.join(__dirname, 'src')));
app.get('/js/loaderScript.js', dependability.loaderScriptExpress({
  base: path.join(__dirname, 'src'),
  include: 'js', 
  baseUrl: "/"
}));

mergedExpress which uses merged, and can be used like:

app.use(express.static(path.join(__dirname, 'src')));
app.get('/js/loaderScript.js', dependability.mergedExpress({
  base: path.join(__dirname, 'src'),
  include: 'js'
}));

Using it with CSS

Simply use: include: 'css'. Wrap tb_require() statements in a CSS comment. Done!

Mode

By default the mode build is used. You can use the mode setting (passed in to the options for all of dependability's functions, e.g. { mode: "test" }), to either:

  • include this file only in these modes:
// tb_only("build")
// tb_only("test")
  • don't include this file in these modes:
// tb_skip("build")

Note: These are ignored if the file is tb_require()'d by another file!

All options

  • relativePaths (default true). Paths given in the list and loaderScript file lists will be relative to the base path given. Can be set to false (full file system path) or another path (string) to make the paths relative to.
  • baseUrl (default /) used only by loaderScript. Prepended to the relative path to create a full URL to the individual scripts.
  • prefix (default tb) to use an alternative prefix (instead of tb) for tb_require, tb_skip, tb_only
  • include (default nothing) can be either a string (e.g. js), an array (e.g. ["js", "jsc"]). Only files that match this extension will be considered when generating the list of files.