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 🙏

© 2025 – Pkg Stats / Ryan Hefner

multilinejavascriptconverter

v1.3.18

Published

Turns multiline text into safe JavaScript variables

Downloads

17

Readme

Coverage Status

Multiline JavaScript Converter

Description

Multiline JavaScript Converter is a tool to convert strings into JavaScript safe text. It is able to account for new lines, special characters and able to produce multiple string types.

Demo of Multiline JavaScript Converter

Standalone Library

Multiline JavaScript Converter can also be used as an NPM library.

NPM

npm install --save-dev multilinejavascriptconverter

Yarn

yarn install --save multilinejavascriptconverter

Import

Inside your Node project:

    var msc = require('multilinejavascriptconverter');
    var input = [
        'line1',
        'line2',
        'line3',
        'line4',
        'line5',
    ];
    var output = msc.convertText('output', input, msc.ECMA5_DOUBLE, false, true, false, msc.TABS);
    console.log(output);

    /* Expected output:
        var output = "line1" +
          "line2" +
          "line3" +
          "line4" +
          "line5"
    */

Documentation

Note: All fields are required.

| Field # | Field Name | Valid Values | |:-------:| ---------- | ------------ | | 1 | Variable name | Any string | | 2 | Input variables | String separated by '\n' (Newline) or Array | | 3 | String type | ECMA_DOUBLE/ECMA_SINGLE/ECMA6/JSON_DOUBLE | | 4 | Add new lines | true/false | | 5 | Trim whitespace | true/false | | 6 | Semicolon (N/A for JSON_DOUBLE) | true/false | | 7 | Spaces | TAB/SPACES_2/SPACES_4/SPACES_8 |

Below constants can be imported from the library:

  • String types: ECMA_DOUBLE/ECMA_SINGLE/ECMA6/JSON_DOUBLE
  • Space types: TAB/SPACES_2/SPACES_4/SPACES_8

Getting setup

  1. Download repository
  2. Run npm install
  3. Run npm run setup to install dependencies

Build all

npm run build

Run site

npm run serve

Compile JS

Full JS compile

npm run js

Import all components

npm run js:build

Convert to ECMA5 code and minify

npm run js:compile

Compile CSS

npm run css

Compile HTML

npm run html

Tests

Run all tests

npm run test

Run ESLLint

npm run linter

Mocha

npm run mocha

Run E2E tests

Run the below the first time:

npm run selenium-setup

The below must be running every time tests are run:

npm run serve node_modules/.bin/chromedriver

To run the tests run the below:

npm run nightwatch

Built with

Bugs and suggestions

If you find any bugs or have any suggestions on how to improve Multiline JavaScript Converter please post in the Github issues.