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

inline-js-core

v0.5.0

Published

The core part of inline-js. Create an inliner with multiple resource loaders, transformers, and shortcuts.

Downloads

46

Readme

inline-js-core

Build Status Coverage Status install size

The core part of inline-js. Create an inliner with multiple resource loaders, transformers, and shortcuts.

Installation

npm install inline-js-core

API

This module exports following members:

  • createInliner: Create an inliner.

createInliner

const inliner = createInliner({
  maxDepth?: Number
});

maxDepth - the max recursion depth. Default: 10.

inliner.inline

const inlineResult = await inliner.inline({
  target: {
    name: String,
    args: Array
  },
  source?: Object,
  content?: String|Buffer
});

Read the resource from target and process $inline directives recursively.

target is a resource specifier. A simple file could be represented as:

{
  name: "file",
  args: ["D:\myfile.txt"]
}

source is also a resource specifier like target. It is only used to resolve relative path to absolute path:

const source = {
  name: "file",
  args: ["D:\foo.txt"]
};
const target = {
  name: "file",
  args: ["bar.txt"]
};
inliner.resource.resolve(source, target);
console.log(target);
/*
{
  name: "file",
  args: ["D:\bar.txt"]
}
*/

inlineResult has following properties:

  • content: Buffer|String - the output content.
  • target: Object - the target resource that is processed.
  • children: [...inlineResult: Object] - inlineResults of child dependencies (i.e. files being inlined by target).

inliner.useConfig

inliner.useConfig({
  resources?: Array,
  transforms?: Array,
  shortcuts?: Array
});

A utility function to add resources, shortcuts, and transforms from a config object. If the argument is falsy, this function has no effect.

inliner.resource.add

inliner.resource.add({
  name: String,
  read: async (source: Object, target: Object) => String|Buffer,
  resolve?: (source: Object, target: Object) => null,
  hash?: (source: Object, target: Object) => String
});

Add a resource loader.

name is the name of the resource loader.

read should return the content of target file. source is the parent file that inlines target.

If resolve is defined, inliner would call this function before read.

hash should convert a (source, target) pair into a unique string that inliner would use it to cache the content. If hash is undefined then the content is never cached.

inliner.resource.remove

inliner.resource.remove(name: String);

Remove a resource loader that the name is name.

inliner.resource.read

const content = await inliner.resource.read(source: Object, target: Object);

Find the resource loader matching target.name then call the read function of the resource loader. Inliner would try caching the result after read.

inliner.resource.cache

A Map object containing hash: String/pendingContent: Promise<content> pairs.

inliner.transformer.add

inliner.transformer.add({
  name: String,
  transform: async (context: Object, content: String|Buffer, ...args) => outputContent: String|Buffer
});

name is the name of the transformer.

transform function is used to transform content.

context object provides some additional information about the source resource. It has following properties:

  • inlineTarget: Object - the target resource. The file that is being inlined and transformed.

  • inlineDirective - an object that represents an inline directive. It has following properties:

    • type: String - could be $inline, line, start, or open.
    • params: Array<String> - arguments of the inline function.
    • start: Number - the start index of the replace range.
    • end: Number - the end index of the replace range.
  • source: Object - the source resource. The file containing the inline directive.

  • sourceContent: String - the content of source.

Other args is specified by the $inline directive. For example:

$inline("myfile|transformA:foo,bar")

In this case, args would be ["foo", "bar"].

inliner.transformer.remove

inliner.transformer.remove(name: String)

Remove the transformer.

inliner.transformer.transform

const outputContent = await inliner.transformer.transform(
  context: Object,
  content: String|Buffer,
  transforms: Array<Object>
);

Transform content through a list of transforms.

inliner.globalShortcuts.add

inliner.globalShortcuts.add({
  name: String,
  expand: String|Function
})

Add a global shortcut expander.

name is the name of the shortcut.

expand is a pattern that would expand the original string. For example, with the following expander:

{
  name: "foo",
  expand: "foobar|t1:$1|t2:$2"
}

It can expand foo:a,b into foobar|t1:a|t2:b. $n (n=1...9) would be replaced with the parameter at specified index. $& would be replaced with all parameters.

expand can also be a function:

expand: (target: Object, ...args) => expandPattern: String

target is the resource that is being processed.

args are parameters of the shortcut.

inliner.globalShortcuts.remove

inliner.globalShortcuts.remove(name: String)

Remove a global shortcut expander.

inliner.globalShortcuts.expand

const outputString = inliner.globalShortcuts.expand(target: Object, pipes: [shortcut, ...otherPipes])

Find the expander matching shortcut.name, expand shortcut, concat the result with otherPipes, then return the final string.

Changelog

  • 0.5.0 (Aug 5, 2018)

    • The module requires node 7.6 or higher.
    • inliner.inline is changed. Now it accept an object.
    • Add: expose inliner.resource.cache.
  • 0.4.1 (Jul 22, 2018)

    • Add: Inliner.useConfig utility function.
  • 0.4.0 (Jun 23, 2018)

    • Add: from parameter of Inliner.inline.
    • Add: InlineResult.target, InlineResult.children to get detailed information about inlined files.
    • Drop: InlineResult.dependency.
  • 0.3.1 (May 23, 2018)

    • Fix: sub-dependency is broken.
  • 0.3.0 (May 23, 2018)

    • Add: export getLineRange, getWhitespace utils in ./lib/parser.
    • Add: The signature of $inline is expanded to $inline(resource, startOffset = 0, endOffset = 0). Use startOffset, endOffset to extend replace range.
    • Change: $inline.line now preserves indents.
  • 0.2.0 (May 23, 2018)

    • Change: the first argument of Transformer.transform is changed to a TransformContext object. This should help implement "endent" transformer.
  • 0.1.1 (May 21, 2018)

    • Fix: ignore parseDirective error when it is wrapped with other tags.
  • 0.1.0 (May 21, 2018)

    • Pull out core from inline-js.