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

strands

v1.0.1

Published

Simple, light-weight string building for JavaScript

Downloads

103

Readme

Strands

NPM version NPM downloads Build status Test coverage

Simple, light-weight string building for JavaScript.

Installation

npm install strands --save

Usage

String Building

For simple string building.

strand (separator = '', prefix = '', suffix = '')

import { strand } from 'strands'

const query = strand(' ', '', ';')

query('SELECT *')
query('FROM', tableName)
query('WHERE count > 10')

console.log(query) //=> "SELECT * FROM test WHERE count > 10;"

Template Building

The template class built on top of a strand.

new Strands ({ indent = '', eol = '\n' })

import { Strands } from 'strands'

const html = new Strands()
const head = new Strands({ indent: '  ' })
const body = new Strands({ indent: '  ' })

head.line('<meta charset="utf8">')

body.line('<h1></h1>')
body.return()
body.line('<div></div>')

html.line('<!doctype html>')
html.line('<html>')
html.line('<head>')
html.append(head)
html.line('</head>')
html.line('<body>')
html.append(body)
html.line('</body>')
html.line('</html>')

console.log(html.toString())
//=> "<!doctype html>\n<html>\n<head>\n  <meta charset="utf8">\n</head>\n<body>\n  <h1></h1>\n\n  <div></div>\n</body>\n</html>\n"

Template Wrapper

Simple wrapper function for creating a "template-like function".

wrap (fn: (t: Strands, data: T) => any, options?: Options): (data: T) => string

import { wrap } from 'strands'

const doc = wrap(function (t, data) {
  t.line('### Authors')
  t.line()

  data.authors.forEach(function (author) {
    t.line('* ', author.name)
  })
})

console.log(doc({ authors: [{ name: 'Blake' }, { name: 'John' }] }))
//=> "### Authors\n\n* Blake\n* John\n"

Useful Libraries

License

Apache License 2.0