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

code-stringify

v2.0.3

Published

code-stringify is node.js module that converts JavaScript variables into source codes. Unlike JSON.stringify, code-stringify converts things into strings of code, not JSON.

Downloads

5,122

Readme

Build Status Coverage

code-stringify

code-stringify is the node.js module that converts JavaScript variables into source codes with indents and styles.

Unlike JSON.stringify, code-stringify also deals with reference(object) types of variables, and it converts JavaScript variables into strings of codes, not JSON.

Supports:

  • Primative variables
  • Regular expressions
  • Functions
  • Arrays
  • Your custom formatter

Installation

npm i code-stringify

Usage

const fs = require('fs')
const stringify = require('code-stringify')

const obj = {
  '0': 1,
  'a': function(n){return n;},
  'b': 1,
  'c-d': 3
}

// So you can use code-stringify to save your javascript variables into a file:
fs.writeFileSync(
  'output.js',
  `module.exports = ${stringify(obj, null, 2)}`
)

Then 'output.js' will look like:

module.exports = {
  0: 1,
  a: function(n){return n;},
  b: 1,
  'c-d': 3
}

stringify(subject, replacer, space, indent): string

subject any

The subject to be stringified

replacer Function(key, value) | Array

The replacer argument acts just like the second parameter of JSON.stringify.

A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string.

stringify({
  a: 1,
  b: 2
}, function (key, value) {
  return key === 'b'
    ? undefined
    : value
})

// '{a:1}'
space number | string

The space argument acts just like the third parameter of JSON.stringify.

indent number | string

Defaults to 0

The code indent for the entire subject. If indent === 4, then the content of the output.js in the first example will be:

    module.exports = {
      0: 1,
      a: function (n){return n;},
      b: 1,
      'c-d': 3
    }

new stringify.Code(string)

We could use new code.Code(code_string) to define an already-stringified property.

So, see the example below:

const output = `module.exports = ${stringify({
  a: 1,
  'foo-bar': 2,
  foo: new stringify.Code('(function(a){return a})(3)')
})}`

saveFile(output, 'output.js')

And the output.js will be:

module.exports = {
  a: 1,
  'foo-bar': 2,
  foo: (function(a){return a})(3)
}

stringify.STRINGIFY_SYMBOL

// `stringify.STRINGIFY_SYMBOL` equals to
stringify.STRINGIFY_SYMBOL = Symbol.for('code.stringify.custom')

If an object[stringify.STRINGIFY_SYMBOL] is a function, then the function will be used as the stringifier of the object.

const monkey = {
  iam: {
    [Symbol.for('code.stringify.custom')] () {
      return '"monkey king"'
    }
  }
}

console.log(stringify(monkey))
// {iam:"monkey king"}

Versus JSON.stringify()

  • JSON.stringify makes JSON.
  • code-stringify makes JavaScript code.

Advanced Section

const {
  Stringifier,
  STRINGIFY_SYMBOL,
  CODE_STRINGIFY_CUSTOM
} = require('code-stringify')

new Stringifier(options)

new in 2.0.0

The constructor Stringifier allows us to take more control of the stringifer.

  • options Object
    • replacer? (Function | Array)=null
    • space? (number | string)=0 Defaults to 0 which indicates there should be no spaces.
    • quote? ' | " the quote character for strings. Defaults to '.
    • useNumberKey? boolean=true uses number key of an object if possible

options.useNumberKey

new Stringifier().stringify({'1': 1, '2b': 2})
// {1:1,'2b':2}

new Stringifier({
  useNumberKey: false
}).stringify({'1': 1, '2b': 2})
// {'1':1:'2b':2}

stringifier.stringify(subject, indent = 0): string

  • indent? (number | string)=0

Returns the JavaScript code string.

stringifier.register(customStringifier): this

  • customStringifier CustomStringifier
interface CustomStringifier {
  // Test if we could use the custom stringifier
  test: Function (subject): boolean
  // If the test method returns true,
  // then the stringify method will be used.
  // Inside the method, we can access the `Stringifier` instance by `this` object, so that we can use the utility methods below
  stringify: Function(subject, indent, options): string
}

Register a custom stringifier for certain data type.

class King {
  constructor (name) {
    this._name = name
  }

  selfIntroduce () {
    return `[king ${this._name}]`
  }
}

new Stringifier().register({
  test (value) {
    return value instanceof Monkey
  },
  stringify (value) {
    return this.string(value.selfIntroduce())
  }
})
.stringify({
  dinosaur: 'Godzilla',
  ape: new King('Kong')
})
// {dinasaur:'Godzilla',ape:'[king Kong]'}

CODE_STRINGIFY_CUSTOM

CODE_STRINGIFY_CUSTOM is a built-in CustomStringifier to support stringify.STRINGIFY_SYMBOL.

And a new Stringifier is not registered CODE_STRINGIFY_CUSTOM by default.

Utility methods

The following methods has no type checking and fault tolerance

Make sure every argument that passed into the methods has been type-checked

stringifier.string(string)

  • string string

Stringify a string

stringifier.object(object, indent)

  • object Object

Stringify a string

stringifier.array(array, indent)

  • array Array

Stringify an array

stringifier.key(key)

  • string key

Stringify a property of an object.

Known Issues

  • space parameter could not affect the code indent inside functions.
  • Could not deal with variable scope so far.

Those issues or tasks which should be done to enhance the module might be fixed in the future. Or there will be a million thanks if you fork and contribute ~~