npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pjl-stream

v0.2.1

Published

processing PJL jobs in streams

Downloads

11

Readme

pjl-stream

extracts PJL information from streamed data

License

MIT

Install

npm i pjl-stream

Usage

Creating a stream parsing data passing through for PJL content is as straight-forward as this:

import { Stream } from "pjl-stream";

const filter = new Stream();

filter.on( "pjl-segment", segment => {
    // TODO inspect segment
} );

You can now pipe a source into this filter and then pipe this filter into whatever drain you like:

import { createReadStream, createWriteStream } from "fs";

const source = createReadStream( "/path/to/my/print.job" );
const drain = createWriteStream( "/path/to/my/filtered/print.job" );

source.pipe( filter ).pipe( drain );

For every encountered PJL segment of data passing the stream an event named pjl is emitted. Its payload is the parsed PJL segment basically consisting of a list of commands.

filter.on( "pjl-segment", segment => {
    console.log( segment.commands );
} );

This list consists of instances of Command, which is the abstract base class for three types of commands:

  • NopCommand is representing lines without any particular command. They comply with format #2 of PJL specification.
  • CommandWithWords is representing a named command complying with format #3 of PJL specification. This is for commands ECHO and COMMENT, only.
  • CommandWithOptions is representing a named command complying with format #4 of PJL specification. It is the common pattern for all but those commands mentioned above.

Event handlers are enabled to adjust existing commands in provided segment, remove them and add new ones. This results in extracted PJL segment of streamed data being replaced with segment resulting from any modification. Any command you keep untouched stays the way it was found in the stream originally.

Support for broken PJL

Some printer drivers of commercial vendors do not fully comply with PJL specification. Starting with version 0.2.1, this parser accepts set of options provided on constructing stream parser. Option strict can be set false explicitly to relax the stream parser on certain violations of PJL specification.

import { Stream } from "pjl-stream";

const filter = new Stream( { strict: false } );

filter.on( "pjl-segment", segment => {
    // TODO inspect segment
} );