Code Monkey home page Code Monkey logo

compact's Introduction

compact.js

A simple JavaScript compacting middleware for express

build status

Installation

npm install compact

Usage

Initialise compact:

var compact = require('compact').createCompact({
  srcPath: __dirname + '/public/src/',
  destPath: __dirname + '/public/compact/',
  webPath: '/js/compact/',
  debug: false
});
  • srcPath is the path to your frontend JavaScript. (If you initialised your project with Express' quick start, you probably want to set this to /public/javascripts).
  • destPath is the path that compact should use to store the compacted assets. If this directory does not exist, it will be created.
  • webPath is the public public facing route to your destPath (This will preceed the filename of the output <script> tags, so webPath: '/js/compact/' -> <script src="/js/compact/myscript.js">).
  • debug is optional. If set to true, the scripts will not be concatenated or minified.

Create namespaces:

Namespaces are used to create different compilations of scripts. Usually, you will want to create a global namespace that is used everywhere:

compact.addNamespace('global');

compact.ns.global
  .addJs('/js/main.js')
  .addJs('/js/widget-a.js')
  .addJs('/js/widget-b.js');

If you have some collection of scripts that will only be used on certain pages, it is a good idea to create a namespace for it. For example, if you have a banner and some ads that only appear on the homepage, and some UI that appears only on the profile page/section:

compact.addNamespace('home')
  .addJs('/js/banner.js')
  .addJs('/js/ads.js');

compact.addNamespace('profile')
  .addJs('/js/profile.js');

When creating a namespace, you can also pass in an extra srcPath. Calls to addJs() will look for the file in the given srcPath, and if not found it then tries the srcPath passed to createCompact().

compact.addNamespace('comments',  __dirname + 'libs/comments/public/src/' )
  .addJs('/js/paging.js')
  .addJs('/js/comments.js');

Using the middleware:

If you have created a global namespace, apply it to all routes like so:

app.use(compact.middleware(['global']));

This will expose the view helper compactJsHtml() in your templates, so you can output the necessary <script> tags.

Selectively apply namespaces to routes:

// Add some compacted JavaScript for just this route. Having the namespaces
// in separate arrays will produce a javascript file per array.
app.get(
  '/',
  compact.js(['home'], ['profile']),
  function (req, res) {
  /* Homepage logic here */
  }
);

// Having different namespaces joined together
// will combine and output as one javascript file.
app.get(
  '/',
  compact.js(['comments', 'profile']),
  function (req, res) {
    /* Blog page logic here */
  }
);

Note: compact must be applied to your route before the route logic. This is so that the view helper is available when you try to render your layout.

Bulk Config

You can defined all the namespaces and js files in a JSON schema using the configure function.

var compact = require('compact').createCompact(...);

compact.configure({
    prepend: [
        '/config.js'
    ],

    append: [
        '/garbageCollector.js'
    ],

    cmsSourcePath: '/public/vendor/cms/',
    cms: [
        'prepend',
        '/myModel.js',
        '/bootstrap.js',
        'append'
    ]
});

In this example you can see that you can either reference a JavaScript file or an existing namespace.

Rendering

Any route that has compact.js() applied will have the helper function compactJsHtml() available. This will render the relevant script tags. In Jade, Use like so:

!=compactJsHtml()

From the examples above, on / you'd get the following

<script src="/js/compact/global.js"></script>
<script src="/js/compact/home.js"></script>
<script src="/js/compact/profile.js"></script>

And on /blog you'd get this

<script src="/js/compact/global.js"></script>
<script src="/js/compact/comment-profile.js"></script>

You also have access to the compactJs() helper which will return an array of files instead of the rendered html.

Credits

Paul Serby follow me on twitter

Licence

Licenced under the New BSD License

compact's People

Contributors

bengourley avatar voronchuk 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.