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

@rezolabs/pre-build

v0.2.0

Published

Template processing tool for deployment

Downloads

39

Readme

PRE-BUILD

Template processing tool for deployment. Tested on HTML and EJS.

Motivation

It costs a lot of time to bring a project from development to production. In the case of web application, we had faced the problem on how not to manually edit all of our template files (e.g. html, ejs) on production. For example, the file index.html has a script with the src attribute is /js/react.development.js and we want to change it to /js/react.production.js on production. Or, we may want to add some scripts like Google Analytics code or Facebook Pixel code to all templates only on production. Therefore, we created Pre-build.js - a command-line script tool that help to automate all the tasks on the template files.

Features

  • Cache busting by changing file name.
  • Change resources from development to production version.
  • Inject production only scripts such as Google Analytic.
  • Replace resources by injecting their content directly (inline).

That's not the end, new features will be added in the future. We would be very pleased to receive your PRs.

Installation

npm install @rezolabs/pre-build -g

Usage

You must supply a config file named pre-build.config.js to let Pre-build know what and how to execute your templates. Then run the command:

pre-build

You can name the file with a prefered name but you have to specify your prefered name in the command-line script:

pre-build your-prefered-file-name.js

Example

For example, you have the following working tree:

.
+-- index.html
+-- pre-build.config.js
+-- build/
    +-- main.js
    +-- main.4ced4b9d199a27657a5d.js

And in index.html:

<!DOCTYPE html>
<html>
    <head>
      <meta charset="utf-8">
      <title>Testing</title>
    </head>
    <body>
      <div id="root"></div>
      <script src="/build/main.js"></script>
    </body>
</html>

You want the script tag to automatically change to src="/build/main.4ced4b9d199a27657a5d.js" on production. The 4ced4b9d199a27657a5d string in the name of the file is used for cache busting on browsers and is generated in a way that cannot be predicted. Only after the file is generated, then you can look up for it in its directory and change the index.html file. Instead of doing it manually, you can now use Pre-build.js to handle all of your costly tasks for you. Let's edit the pre-build.config.js file by copying the following code:

module.exports = {
    srcDir: './',
    outDir: './',
    findDir: './build',
    publicPath: '/build',
    tasks: [
        {
            file: 'index.html',
            todos: [
                {
                    name: 'Insert hash for main.js',    // This is for debug purpose
                    type: 'insert-hash',
                    attribute: 'src',
                    query: 'script[src="/build/main.js"]',
                    regex: /main.\w+.js$/,
                },
            ],
        }
    ],
};

Then in the terminal run:

pre-build

When finished, your index.html will be changed to:

<!DOCTYPE html>
<html>
    <head>
      <meta charset="utf-8">
      <title>Testing</title>
    </head>
    <body>
      <div id="root"></div>
      <script src="/build/main.4ced4b9d199a27657a5d.js"></script>
    </body>
</html>

If you want to keep your original index.html, simply change the ourDir in the config file to a different directory.

Configuration

|Name|Type|Default|Description| |:--:|:--:|:-----:|:----------| |srcDir|{String}|'./template'|The directory where you place your original template files.| |outDir|{String}|'./dist'|The directory where the output files are generated, all of the original template files remain unchanged.| |findDir|{String}|'./build'|This is used for some specific tasks such as changing href of a link to a file that contains hash in the name. For example: said that we want to change a link's href attribute from "/styles/main.css" to "/styles/main..css", is a "random" string that we cannot predict. That file "main..css" must be inside findDir.| |scripts|{Array.<string>}|[]|Scripts that will be insert to the head of all template.| |tasks|{Array}|[]|Specify a list of task objects to execute|

Task Object

More documentation needed