GithubHelp home page GithubHelp logo

eiskalteschatten / concatenate-js-middleware Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 5 KB

A module to concatenate JavaScript files on-the-fly or to save them to disk.

Home Page: https://www.alexseifert.com

JavaScript 100.00%
javascript concatenation concat express express-middleware nodejs nodemodules

concatenate-js-middleware's Introduction

concatenate-js-middleware

A module to concatenate JavaScript files on-the-fly or to save them to disk.

This module is still in its infancy. More documentation and features will be added as it matures.

Requirements

This module is tested with Node.js 8 and 9. It might work with Node.js 6 or 7, but is not tested.

Install

npm install --save concatenate-js-middleware

Config

In order to concatenate your JavaScript files, you will need to configure which JavaScript files will be concatenated into which files. In the example below, we have two final JavaScript files: "libs.js" and "scripts.js":

  • "libs.js" contains the files "../../node_modules/jquery/dist/jquery.min.js" and "other/lib.js".
  • "script.js" contains the files "../public/js/homepage.js" and "../public/js/anotherFile.js".

jsConfig.js

'use strict';

const path = require('path');

const libs = [
  '../../node_modules/jquery/dist/jquery.min.js',
  'other/lib.js'
];

const scripts = [
  '../public/js/homepage.js',
  '../public/js/anotherFile.js'
];

module.exports = {
  libs: libs.map(file => {
    return path.join(__dirname, file);
  }),
  scripts: scripts.map(file => {
    return path.join(__dirname, file);
  })
};

Usage

For on-the-fly compiling

const concatenateJs = require('concatenate-js-middleware');
const jsConfig = require('./config/jsConfig.js');

app.use('/js/:jsName', concatenateJs(jsConfig));

For concatenating and saving as static JavaScript file

const concatenateJs = require('concatenate-js-middleware');
const jsConfig = require('./config/jsConfig.js');

concatenateJs.concatenateJsAndSaveMultiple({
  originPath: path.join(__dirname, 'public/js/'),
  destinationPath: path.join(__dirname, 'public/js/'),
  files: ['libs.js'],
  minify: true,
  config: jsConfig
}).then(...).catch(...);

API

concatenateJs()

Returns the concatenated JavaScript as a string.

const concatenateJs = require('concatenate-js-middleware');
const jsConfig = require('./config/jsConfig.js');

const jsString = concatenateJs.concatenateJs(jsConfig['libs']).then(...).catch(...);

concatenateJsAndSave()

Concatenates the given JavaScript file.

const concatenateJs = require('concatenate-js-middleware');
const jsConfig = require('./config/jsConfig.js');

concatenateJs.concatenateJsAndSave({
  originPath: path.join(__dirname, 'public/js/'),
  destinationPath: path.join(__dirname, 'public/js/'),
  file: 'libs.js',
  minify: true,
  config: jsConfig
}).then(...).catch(...);

concatenateJsAndSaveMultiple()

Concatenates multiple JavaScript files defined in the "files" option.

const concatenateJs = require('concatenate-js-middleware');
const jsConfig = require('./config/jsConfig.js');

concatenateJs.concatenateJsAndSaveMultiple({
  originPath: path.join(__dirname, 'public/js/'),
  destinationPath: path.join(__dirname, 'public/js/'),
  files: ['libs.js'],
  minify: true,
  config: jsConfig
}).then(...).catch(...);

setupCleanupOnExit()

Deletes the passed directory when the app is exited. The idea is to pass the directory where your compiled CSS files are, so that they can be deleted when the app is exited and recompiled when the app starts.

const concatenateJs = require('concatenate-js-middleware');

process.on('SIGINT', () => {
  try {
    concatenateJs.setupCleanupOnExit({
      path: path.join(__dirname, 'public/js/'),
      files: ['libs.js']
    });
    process.exit(0);
  }
  catch(error) {
    process.exit(1);
  }
});

Maintainer

This modules is maintained by Alex Seifert (Website, Github).

concatenate-js-middleware's People

Contributors

eiskalteschatten avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.