New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

biscotti

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

biscotti

.

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
2
Weekly downloads
 
Created
Source

Biscotti

Like Legos for building domain-specific languages (DSLs).

For example, suppose we want an HTML DSL. We can implement one that uses CoffeeScript and VDOM like this:

import {loader, fallback, buffer, include,
  filters, sandbox, engine} from "biscotti"
import {HTML} from "panda-vdom"

render = do ->

  globals = Object.assign {}, {require}, HTML

  engine [
    sandbox: sandbox globals
    loader
      coffeescript:
        index: true
        extensions: [ ".vhtml" ]
    do fallback
    include isBuffered: false
    buffer
    filters.string
  ]

export {render as default}

You could then call the resulting render function:

# will load ./html/index.vhtml
render path: "./vhtml"

You probably don't want to use this directly. Instead, check out the various engines we've written that use Biscotti:

  • biscotti-coffee
  • biscotti-cpp
  • biscotti-html
  • biscotti-css

Usage

The engine function takes an array containing an initial definition of the engine and a list of mixins that will add capabilities to it. Typically, that initial definition defines the sandbox property, whose value must be a sandbox, which is a V8 VM. It returns a render function that takes an options object with either a path (and option encoding) or a content property.

Mixins

Mixins include:

  • loader - A dictionary of file types and descriptions for loading a file given a path. The index property determines whether to try adding index to the path. The extensions property is a list of extensions to try.

  • fallback - Defines the assumptions to make if no path is given. The default is to assume a CoffeeScript file. You can pass an options object with a language property to provide a different fallback.

  • include — Adds an include method to the sandbox's globals. This allows a given file to include another file using a relative path. Effectively allows for the equivalent of partials, or partial templates.

  • buffer — Adds functions to the sandbox's globals allowing included files to add values to a buffer. This way you can return values from the files your engine processes. The get function returns the buffer, in case you want to manipulate it from within a file. The append function adds to it. The $$ function is equivalent to append. The $ modifies another function so that it's return value is appended to the buffer.

  • filters — Includes various post-processing functions for transforming the buffer into a usable return value. filters.string converts each element into a string and appends it to single return string.

  • embedded — Allows you to process arbitrary text, embedding code between delimiters. You must provide an options object with the delimiters as open and close (which will default to open if undefined).

Language Support

Biscotti supports JavaScript and CoffeeScript out of the box. You can add support for additional languages by adding definitions to the sanbox's generic run method. See the code for the sandbox and embedded mixins for examples.

Keywords

FAQs

Package last updated on 21 Jan 2019

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