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

eslint-config-hjf

v0.0.2

Published

Personal eslint config

Downloads

5

Readme

eslint-config-hjf

My personal eslint configs

Rules and Rationale

Typescript only

I like to throw code around in JS every now and then, but for hacks and giggles. When coding gets important, I bring tooling in, like the TypeScript compiler and ESLint.

Tabs

Anybody can pick their indent width this way: there's no argument between 2 or 4 spaces.

Unix Line Endings

These are portable, unlike windows line endings: publishing a CLI with these means that your shebang won't be recognised.

Single Quotes

Single quotes generally make it easier to deal with quoting a person. They're not ideal when you've got contractions though. It's the lesser of two evils. There's also one less keypress.

// correct
const host = 'github.com'

// incorrect
const remoteHost = "something.com"

// WHY
const notAHost = `template literals are inconsistent across keyboards`

Strict equality always

It's JavaScript - '1' == 1 is true. Let's ignore any confusion.

No floating promises

If something's a promise, we want to know - even if we're not awaiting it. This makes understanding a new codebase easier.

There are two ways of calling a promise:

// async-blocking
await makeApiRequest()

// just leave it to get picked up whenever in the microtask queue
void doSomething()

Object curly spacing

There's no functional reason for this: I just like the way it looks

import {pickBy, is} from 'ramda'

const isNumeric = is(Number)

const data = {a: 1, b: 'bar'}

const pickNumbers = pickBy(isNumeric)

const numbers = pickNumbers(data) // {a: 1}

Returning await

This is only acceptable in a try-catch. Returning await can throw.

async function willThrow() {
	// will throw here, as we wait for r.json() to evaluate
	return await fetch('/not_json').then(r => r.json())
}

Semicolons

They're not necessary in JavaScript. Don't bother.