New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ect-loader

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ect-loader

ect templates compiler for webpack

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
4
33.33%
Maintainers
1
Weekly downloads
 
Created
Source

ect-loader

ect templates compiler for webpack

Motivation

ectjs is one of the fastest templating libraries out there, but not so well known by the community.

As there wasn't a loader for webpack, I've decided to build one before going to bed. Here it is, show your apretiation by starring the project, tweeting and enjoy using it.

Installation

npm i --save-dev ect-loader

Usage

Documentation: Using loaders

Example config

This webpack config can compile ect templates for you to use on your browser without having to load ECT and CoffeeScript browser versions.

module.exports = {
  module: {
    loaders: [
      { test: /\.ect$/, loader: "ect" }
    ]
  }
};

Minification

This loader minifies template before compiling in case you're running with performance enhancment option (webpack -p).

It works by cutting off spaces between HTML tags and line-breaks.

Source Example

<div id="testing">
    <%- __ "Read the docs" %>
</div>

Minified output

<div id="testing"> Lê a documentação </div>

Keywords

ect

FAQs

Package last updated on 22 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts