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

schar

v1.1.0

Published

Special character list

Downloads

4

Readme

Pantone color palette

Usage

  • NPM package name: schar.
  • Exported characters:
// https://www.w3.org/wiki/Common_HTML_entities_used_for_typography
export const singleQuoteLeft = '‘' // ‘ or ‘	' or '
export const singleQuoteRight = '’' // ’ or ’ apostrophe, Smart Quotes
export const doubleQuoteLeft = '“' // “ or “ Smart Quotes, 	", "
export const doubleQuoteRight = '”' // ” or ” Smart Quotes, ``

// uncommon

// Cent (currency)
export const cent = '¢' // ¢ or ¢
// Pound (currency)
export const pound = '£' // £ or £
export const section = '§' // § or §
export const copyright = '©' // © or © or (c)
export const guillemetsLeft = '«' // « or «
export const guillemetsRight = '»' // » or »	"
export const registeredTrademark = '®' //	® or	®	or (R)
export const degree =	'°' //	°	or °
export const plusMinus = '±' // ± or ± or +/-

export const pilcrow =	'¶'	// ¶ or	¶ // paragraph
export const middleDot = 	'·'	// ·	or ·
export const fractionalHalf = '½'	 // ½	or ¼	or 1/2
export const enDash = '–' //	–	or – or	- for ranges
// long dash
export const emDash = '—' // 	—	or — or	- enclosed by spaces, or --
export const singleQuoteLow = '‚' // 	‚	or ‚	' or comma
export const doubleQuoteLow = '„' //	„	or „	" or ,,
export const singleDagger = '†' // † or † or *
export const doubleDagger = '‡' // ‡	 ‡	 or **
export const bullet = '•' // 	•	or • or	*
export const ellipsis = '…' //	…	or …	or ...
export const prime = '′' // ′ or ′ or ', ' // minute
export const doublePrime = '″' //	 ″	or  ″	or ", // second, inch
export const euroSign = '€' //	€	or €
export const trademark = '™' //	™	or ™	or (tm)
export const almostEqual = '≈' //	≈	or ≈	or ~
export const notEqual = '≠' //	≠	or ≠	or !=
export const leq = '≤' // &le; or &#8804; or <=
export const geq = '≥' //	 &ge;	or &#8805;	or >=
export const lessThan = '<' // &lt; or &#062;
export const greaterThan = '>' // &gt;	or  &#060;

// https://en.wikipedia.org/wiki/Greek_alphabet
// greek letters
export const greekAlpha = 'Α'
export const greekalpha = 'α'
export const greekBeta = 'Β'
export const greekbeta = 'β'
export const greekGamma = 'Γ'
export const greekgamma = 'γ'
export const greekDelta = 'Δ'
export const greekdelta = 'δ'
export const greekEpsilon = 'Ε'
export const greekepsilon = 'ε'
export const greekZeta = 'Ζ'
export const greekzeta = 'ζ'
export const greekEta = 'Η'
export const greeketa = 'η'
export const greekTheta = 'Θ'
export const greektheta = 'θ'
export const greekIota = 'Ι'
export const greekiota = 'ι'
export const greekKappa = 'Κ'
export const greekkappa = 'κ'
export const greekLambda = 'Λ'
export const greeklambda = 'λ'
export const greekMu = 'Μ'
export const greekmu = 'μ'
export const greekNu = 'Ν'
export const greeknu = 'ν'
export const greekXi = 'Ξ'
export const greekxi = 'ξ'
export const greekOmicron = 'Ο'
export const greekomicron = 'ο'
export const greekPi = 'Π'
export const greekpi = 'π'
export const greekRho = 'Ρ'
export const greekrho = 'ρ'
export const greekSigma = 'Σ'
export const greeksigma = 'σ' // or ς
export const greekTau = 'Τ'
export const greektau = 'τ'
export const greekUpsilon = 'Υ'
export const greekupsilon = 'υ'
export const greekPhi = 'Φ'
export const greekphi = 'φ'
export const greekChi = 'Χ'
export const greekchi = 'χ'
export const greekPsi = 'Ψ'
export const greekpsi = 'ψ'
export const greekOmega = 'Ω'
export const greekomega = 'ω'