Socket
Socket
Sign inDemoInstall

trumpet

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trumpet

parse and transform streaming html using css selectors


Version published
Weekly downloads
7.9K
increased by5%
Maintainers
1
Weekly downloads
 
Created
Source

trumpet

Parse and transform streaming html using css selectors.

build status

trumpet

example

select

var trumpet = require('trumpet');
var tr = trumpet();

tr.select('.b span', function (node) {
    node.html(function (html) {
        console.log(node.name + ': ' + html);
    });
});

var fs = require('fs');
fs.createReadStream(__dirname + '/select.html').pipe(tr);
<html>
  <head>
    <title>beep</title>
  </head>
  <body>
    <div class="a">¡¡¡</div>
    <div class="b">
      <span>tacos</span>
      <span>y</span>
      <span>burritos</span>
    </div>
    <div class="a">!!!</div>
  </body>
</html>

output:

$ node example/select.js 
span: tacos
span: y
span: burritos

update

var trumpet = require('trumpet');
var tr = trumpet();
 
tr.select('.b span', function (node) {
    node.update(function (html) {
        return html.toUpperCase();
    });
});

tr.select('.c', function (node) {
    node.update('---');
});

tr.select('.d', function (node) {
    node.remove();
});

var fs = require('fs');
tr.pipe(process.stdout, { end : false });
fs.createReadStream(__dirname + '/update.html').pipe(tr);
<html>
  <head>
    <title>beep</title>
  </head>
  <body>
    <div class="a">¡¡¡</div>
    <div class="b">
      <span>tacos</span>
      <span>y</span>
      <span>burritos</span>
    </div>
    <div class="a">!!!</div>
    
    <div class="c">
        <span>beep</span>
        <span>boop</span>
    </div>
    
    <div class="d">
        <span>x</span>
        <span>y</span>
    </div>
  </body>
</html>

output:

$ node example/update.js
<html>
  <head>
    <title>beep</title>
  </head>
  <body>
    <div class="a">¡¡¡</div>
    <div class="b">
      <span>TACOS</span>
      <span>Y</span>
      <span>BURRITOS</span>
    </div>
    <div class="a">!!!</div>
    
    <div class="c">---</div>
    
    
  </body>
</html>

methods

var trumpet = require('trumpet')

var tr = trumpet(opts)

Create a new trumpet stream. This stream is readable and writable. Pipe an html stream into tr and get back a transformed html stream.

By default, trumpet uses this list of self-closing tags:

[ 'area', 'base', 'basefont', 'br', 'col', 'hr', 'input', 'img', 'link', 'meta' ]

You can specify a custom list by setting opts.special.

tr.select(selector, fn)

Fire fn(node) for every element in the html stream that matches the css selector.

The nodes are described in the nodes section of this document.

nodes

node.name

The name of the html element node, such as 'div' or 'span'.

node.attributes

An object with all the html attributes.

For example,

<img src="/beep.png" width="32" height="32">

has an attribute object of:

{ src : 'beep.png', width : '32', height : '32' }

node.html(cb)

Get the inner text and html for the element, which may not have arrived yet.

cb(text) fires when the inner contents are ready.

node.update(cb, attr), node.update(html, attr)

Replace the node's inner contents with the string html or the string return value from cb(html).

If attr is specified, these will be used in the output stream as the new tag attributes instead of node.attributes.

node.replace(cb), node.replace(html)

Replace the node's outer content with the string html or the return value from cb(html). The html passed to cb will be the outer contents.

node.remove()

Remove a node from the output stream.

selector syntax

Presently these css selectors work:

  • E
  • E F
  • E > F
  • E + F
  • E.class
  • E#id

install

With npm do:

npm install trumpet

license

MIT/X11

Keywords

FAQs

Package last updated on 25 May 2012

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