common-stuff
TypeScript icon, indicating that this package has built-in type declarations

1.11.1 • Public • Published

Common stuff 🔨

codecov CodeFactor semantic-release code style: prettier

JavaScript and NodeJS are missing a lot of core functionalities. The goal of this library is to bring a variety of useful helpers on both NodeJS & Browser with strong TypeScript typing and zero dependencies.

Missing something? Create feature request!

Read Documentation 📘

Installation

npm version npm

Install with NPM/yarn:

# NPM
npm install common-stuff
# Yarn
yarn add common-stuff

Import what you need:

import { isEqual } from 'common-stuff'

if (isEqual({'a': 1}, {'a': 1})) {
    console.log('Hello')
}

Always import only what is necessary to take full advantage of tree shaking.

Load directly in the browser

Include UMD bundle

Include script from CDN and use commonStuff global variable:

<script src="https://unpkg.com/common-stuff"></script>
<script>
  if (commonStuff.isEqual({'a': 1}, {'a': 1})) {
    console.log('Hello')
  }
</script>

Dynamic import

Use import directly in the browser that returns loaded library wrapped in the promise:

<script>
  import('https://unpkg.com/common-stuff?module').then(({ isEqual }) => {
    if (isEqual({'a': 1}, {'a': 1})) {
      console.log('Hello')
    }
  })
</script>

Examples

Using FP patterns

import { pipe, sortBy, deduplicateBy, chunk, ensureArray, groupBy } from 'common-stuff'

const result = pipe(
    [{ value: 4 }, { value: 6 }, { value: 8 }],
    (v) => sortBy(v, (o) => o.value),
    (v) => deduplicateBy(v, (o) => o.value),
    (v) => v.map((o) => ensureArray(o.value)),
    (v) => chunk(v, 2),
    (v) => groupBy(v, (o) => o.length)
)
// [ [1, [[[ 8 ]]]],[ 2, [[[ 4 ], [ 6 ]]]] ]

With arrow functions you can easily use pipe with any function

Parsing env variables

For example we have following ENV variables:

CONFIG__PRIVATE_KEY="my key"
CONFIG__PUBLIC_KEY="my key"
CONFIG__ALLOWED_IPS='["127.0.0.1", "localhost"]'
import { convertToNested, camelCase } from 'common-stuff'

const config = convertToNested(process.env, {
    separator: '__',
    transformKey: camelCase
}).config
// { privateKey: 'my key', publicKey: 'my key', allowedIps: ['127.0.0.1', 'localhost'] }

Using Http errors

import { HttpError, HttpStatusCodes } from 'common-stuff'

app.get('/', function (req, res) {
    throw new HttpError(HttpStatusCodes.INTERNAL_SERVER_ERROR, 'Some secret error message')
})

// Handle unknown errors
app.use(function (err, req, res, next) {
    if (err instanceof HttpError) {
        // Log full error message
        console.error(err.message)

        // Return safe error message without private details
        return res.status(err.status).send(err.publicMessage)
    }
    next()
})

This example returns 500 error message with text Internal Server Error and logs private message to console. Check express-async-errors for Express JS async support.

Common browser helpers

import { parseCookies, generateCookie, parseQueryString } from 'common-stuff'

parseCookies(document.cookie)
// {session: '26e761be168533cbf0742f8c295176c7'}

document.cookie = generateCookie('name', 'John', { expires: 7 })

parseQueryString(location.search)
// { page: ['1'], limit: ['20']}

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.11.126latest

Version History

VersionDownloads (Last 7 Days)Published
1.11.126
1.11.04
1.10.31
1.10.20
1.10.10
1.10.00
1.9.00
1.8.00
1.7.00
1.6.40
1.6.30
1.6.23
1.6.10
1.6.00
1.5.22
1.5.11
1.5.00
1.4.20
1.4.10
1.4.00
1.3.20
1.3.10
1.3.00
1.2.00
1.1.20
1.1.10
1.1.00
1.0.10
1.0.00
1.0.0-alpha.40
1.0.0-alpha.30

Package Sidebar

Install

npm i common-stuff

Weekly Downloads

37

Version

1.11.1

License

MIT

Unpacked Size

817 kB

Total Files

30

Last publish

Collaborators

  • lukelt