Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

enb-html-freeze

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

enb-html-freeze

Techs for freezing resoureces from HTML

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

enb-html-freeze

NPM version Build Status Coverage Status Dependency Status

Технологии для фризинга статических ресурсов из HTML.

Установка:

$ npm install --D enb-html-freeze

Запуск тестов

$ npm test

API

Опции

  • String target — Результирующий таргет. По умолчанию — ?.freeze.html.
  • String source — Исходный html таргет. По умолчанию — ?.html.
  • String staticDir — Путь к директории для фризинга. По умолчанию — _.
  • String algorithm — Алгоритм вычисления hash-суммы. По умолчанию — md5.
  • String tag — HTML тэг. По умолчанию — img.
  • String attr — Атрибут HTML тэга. По умолчанию — src.
  • Number parallelLimit — Количество одновременно сохраняемых файлов. По умолчанию — 50.

Пример

var htmlFreeze = require('enb-freeze/techs/html');
//..
nodeConfig.addTechs([
    //...
    [htmlFreeze, {
        source: '?.source.html',
        target: '?.frz.html',
        staticDir: 'statics/imgs',
        parallelLimit: 100,
        algorithm: 'sha1',
        tag: 'div',
        attr: 'data-img'
    }],
    //...
]);

Разработка

Руководство на отдельной странице.

FAQs

Package last updated on 11 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc