Socket
Socket
Sign inDemoInstall

@danmasta/interpolate

Package Overview
Dependencies
4
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @danmasta/interpolate

Simple string interpolation helper


Version published
Weekly downloads
7
decreased by-46.15%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Interpolate

Simple template string interpolation for strings and files

Features:

  • Easy to use
  • Interpolate template strings: {{VAR}}
  • Parses strings and files
  • Can interpolate from parameters and/or environment variables
  • Supports nested paths from complex parameters
  • Includes cli tool and node api

About

We needed a way to interpolate template variables from strings and files at build and/or run time. I wanted both a node api and cli tool to use for easy integration with jenkins, docker, or kubernetes, and also wanted the ability to interpolate with environment variables or manually specified parameters.

Usage

Add interpolate as a dependency for your app and install via npm

npm install @danmasta/interpolate --save

Require the package in your app

const interpolate = require('@danmasta/interpolate');

Options

namealiastypedescription
inputistringDirectory or file path to use when reading files
outputostringDirectory to write parsed files to
srcstringGlob pattern string to filter input file list, ex: **/*.yml
stringsstringText string to parse
envebooleanIf true will also interpolate with environment variables. Default is false
paramspobject|stringObject of key,value pairs to use for parameter matching. If string, it should either be a stringified json object, or a comma-separated key,value list: "key1=1,key2=2". Default is null
warnwbooleanIf true will write a message to stderr when a parameter is not found. Default is true
throwtbooleanIf true will throw an error when a parameter is not found. Default is false
defaultdstringDefault value to use when a parameter is not found. Default is ''
helphbooleanView the cli help menu

Methods

NameDescription
Interpolator(opts)Interpolator class for creating a custom parser instance
parse(str, opts)Parses a string with optional opts
file({ input, output, src })Parses a file or directory based in opts.input. Files are parsed then written to opts.output

Examples

Parse a text string

let params = {
    SRC_DIR: './src',
    BUILD_DIR: './build'
};

let string = '{{SRC_DIR}} -> {{BUILD_DIR}}';

console.log(interpolator.parse(str, { params }));

Parse a directory of files via cli

interpolate --env -i ./deploy -o ./build --src **/*.(yml|yaml)

Testing

Testing is currently run using mocha and chai. To execute tests just run npm run test. To generate unit test coverage reports just run npm run coverage

Contact

If you have any questions feel free to get in touch

Keywords

FAQs

Last updated on 26 Jul 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc