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

@captum/captum-liquid

v0.0.7

Published

Captum Template Parser extended from Liquid

Downloads

6

Readme

Captum Liquid

Extension of the LiquidJS project with additional functions specifically for use with Captum templates.

Usage

const CaptumLiquid = require('captum-liquid').Liquid;
// or
import Liquid from 'captum-liquid';

After that, everything is the same as the base LiquidJS project.

Additional Functions

json

This will output the field as pretty printed JSON, indented by 2 spaces.

Usage:

<pre>{{ data | json }}</pre>

jsonCompact

This will output the field as pretty printed JSON but also compact for some cases, see json-stringify-pretty-compact

Usage:

<pre>{{ data | jsonCompact }}</pre>

markdown

This will output the field parsed by Markdown.

Example Data:

{
  "content": "# Getting Started\n\nHere is a quick guide"
}

Usage:

{{ content | markdown }}

jsonPropertiesExample

This will take an object of JSON Schema properties and output them as a JSON formatted string example.

Example Data:

{
  id: {
    type:        'number',
    description: 'Identifier',
    example:     1234,
    minimum:     1
  },
  created_on: {
    type:        'string',
    description: 'Date of creation',
    readOnly:    true,
    example:     '2019-05-23T03:52:04.000Z'
  }
}

Usage:

{{ content | jsonPropertiesExample }}

exampleUri

This will take a URI string and format it with values from the schema given to it. See the test folder of this project for a full example.

Usage:

{{ href | exampleUri: object_schema, 'api.example.com' }}

bashExample

Given a endpoint Link object, and also supplying the entire Object schema as well, this will return a cURL example for the request. See the test folder of this project for a full example.

Usage:

{{ object_link | bashExample: object_schema }}

httpResponseCode

Pipe a numeric HTTP Response Code to this filter to get the code along with the reason, ie: 201 Created

Usage:

{{ http_code | httpResponseCode }}

restMethodResponse

Given a standard HTTP Method, this filter will return what should be the standard HTTP Response code and reason. Ie: POST would return 201 Created. This is subjective to everyone's interpretation of REST methods however and it may be preferable to use httpResponseCode if this doesn't suit you.

Usage:

{{ http_method | restMethodResponse }}

Compiling

yarn install
npm run build
npm run test