Git Product home page Git Product logo

gulp-multinject's Introduction

Build Status NPM version Dependency Status

gulp-multinject

Inject scripts, stylesheets and more into templates and htmls, with support for namespaces.

Install

Install with npm.

npm install --save-dev gulp-multinject

Examples

The example below will scan all the .html and .jade files and will inject the provided scripts and styles.

var gulp = require('gulp');
var gulpMultinject = require('gulp-multinject');

gulp.task('default', function () {
  gulp.src(['assets/**/*.html', 'assets/**/*.jade'])
    .pipe(gulpMultinject([
        'assets/bundle.js',
        'http://example.com/test.js',
        'assets/styles/style.css'
      ],
      'adminNamespace'
    ))
    .pipe(gulp.dest('out/'));
});

For .html files it will inject between the tags:

  <!--INJECT:adminNamespace-->
  <!--END INJECT-->

For .jade files it will inject between the tags:

  //INJECT:adminNamespace
  //END INJECT

**At the moment only .html and .jade files are supported by default, but you can override the templates using the templateMap option (or submitting a PR) **

API

gulpMultinject(injectList, namespace, options)

Create a new gulp-multinject transform stream.

Arguments

  • injectList: Array. A list of URLs or files to inject.
  • namespace: String. The namespace to use for the inject tags.
  • Options: Object|undefined. An object containing the following
    • templateMap: A map used for resolving the tag and templates to use for the injection. For an example of a template map look into the default template map
  • base : String. Defaults to "". The base directory for the injected files. It will be removed from the provided path before the injection
  • urlPrefix: String. Defaults to "/". A string to prepend to the injected file url.
  • relative: Boolean. Defaults to false. If true the injected path will be relative to the file it is injected into.
  • defaultExtension: String. Defaults to null. Sometimes if you are injecting some URLs, for example from a CDN, they don't contain an extension, in this case gulp-multinject will use this options to resolve the proper template to use for the injection.

License

MIT @ Mario Casciaro


Bitdeli Badge

gulp-multinject's People

Contributors

kennethlynne avatar mariocasciaro 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.