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

@teamteanpm2024/iusto-accusantium-aliquam

v1.0.4

Published

Downloads

270

Maintainers

shivamkalsi2024shivamkalsi2024

Keywords

statelessopenArrayBuffer#sliceratelimitreact-hooksstylecss variablesymbolsbannerTypeScriptinstallereslintconfigrapidtypesafenopeES2019ECMAScript 2017stablecorechannelencryptiontakefunctionsrequestutilqssetterES2021varnodeES6reactfromcollection.es6CSSprotocol-buffersgetOwnPropertyDescriptorIteratorjwtoffsetspecreal-time3dieflattenmake dirlintdeepcloneless compilerTypeBoxmatches__proto__dropstreampreprocessori18nauthenticationsafeArray.prototype.containsdatalengthwindowsprotobufjoi0ES8uplessfseventsresolvemkdirfull-widthstylingeveryhigher-orderfileloadingcryptmomentqueueMicrotaskdescriptoreslintplugincachenumberappReactiveExtensionsArrayBuffertypeofObject.fromEntrieslesscssargumentschildtypanionenumerablenpminferencedomfast-deep-copyutilityterminaltoStringTagRegExp.prototype.flagsarrayprogressfiltersidecjkECMAScript 36to5stylesvaluesfast-copyformses-shimseventsposedeependerclassesObservablesbluebirdjsonwatchArray.prototype.filterlimitreduxpackagesqueryanimationisConcatSpreadablethroatsomeRFC-6455browserlistopensimportzerostatusthrottlefunctionthreeapollovalidES2016assertionmimetypesmonorepomatchtaskreact-hook-formweakmapdescriptionpolyfilltypestyleguidedescriptorsdependenciesyamlcompareESfindreact poseHyBibabel-corecensorECMAScript 2018flagsignalcmdzodURLObject.isstringtoobjectiteratorlrusanitizationmodulespureassertFunction.prototype.namedeep-clonewebidleinternal slotassignjsRxJSaccessibilityObjectchaigrouppropforEachtestererrortostringtagjsdomsetmixinsgdproperating-systemidserializeextendPromisees2015extrasyntaxtsformatReflect.getPrototypeOfECMAScript 2015functionaljsonpathwalkoptimistjQueryhttpswgetclonees2016collectionconsumewaitmergetrimRightReactiveXESnextObservablecommand-lineenvironmentlastserializationoptiontaprangeerrormovejson-schema-validationconsoleequalityjavascriptexit-codeFloat64ArraymruautoprefixersyntaxerrorSymbol.toStringTagpostcss-plugin_.extendprotodeterministicregexjestyuputilsregular expressionsrmsetPrototypeOfstreamspipeformattingmobilevalidatedependency managerframeworknamesbufferwordwrapcolorpromisecontainsmkdirpvariablespoint-freeredux-toolkitlibphonenumberprototypeguidparentstrimStartstartertslibwalkinglinkfast-cloneurlswritableexpressionTypedArrayStreamkeysbddUint8ClampedArrayArray.prototype.findLastIndexUint8ArraysignalswarningWeakMapWebSocketdayjsdeep-copypathECMAScript 6spinnerwrapdatastructurebyteLengthArray.prototype.flatMapexecutablefindupsigtermpyyamlfiglet$.extendgetintrinsicreadablestreamBigInt64ArrayinternaltraverseansipackageInt32ArrayECMAScript 2019Mapes6computed-typesqueuetelephoneRxmapsetImmediatehassymlinkfindLastIndexpostcsselectronserializertouchdataViewcall-boundworkerdiffnested cssStreamsUnderscorettystylesheetcss lessclientwhatwgcodesmacosfastcloneawaittermsharedarraybufferweaksetrgbes5a11yArray.prototype.findLastminimalcurriedjapaneseprivate dataJSON-Schemacolumnremovemulti-packageargumentarrayseditorSymbolchromefastcopyuuidES5callES7dataviewclassnametacitbatchclassnamesextensionlooktranspilerECMAScript 2016hooksregularesfolderloggingtddobjquoteoncereact-testing-librarypasswordtextboundstringifierregexptypeserror-handlingjsxfixed-widthless.jsconcatMaprandomfullwidthsharedtapelanguageargscommandnegativeform-validationURLSearchParamstrimEndasync

Readme

Babel (pronounced "babble") is a community-driven project used by many companies and projects, and is maintained by a group of volunteers. If you'd like to help support the future of the project, please consider:

  • Giving developer time on the project. (Message us on Twitter or Slack for guidance!)
  • Giving funds by becoming a sponsor on Open Collective or GitHub (which goes to our Open Collective account)!

Sponsors

Our top sponsors are shown below! [Become a sponsor]

Intro

Babel is a tool that helps you write code in the latest version of JavaScript. When your supported environments don't support certain features natively, Babel will help you compile those features down to a supported version.

In

// ES2020 nullish coalescing
function greet(input) {
  return input ?? "Hello world";
}

Out

function greet(input) {
  return input != null ? input : "Hello world";
}

Try it out at our REPL.

FAQ

Who maintains Babel?

Mostly a handful of volunteers, funded by you! Please check out our team page!

Is there a Babel song?

I'm so glad you asked: Hallelujah —— In Praise of Babel by @angus-c, audio version by @swyx. Tweet us your recordings!

Looking for support?

For questions and support please join our Slack Community (you can sign up here for an invite), ask a question on Stack Overflow, or ping us on Twitter.

Where are the docs?

Check out our website: babeljs.io, and report issues/features at babel/website.

Want to report a bug or request a feature?

Please read through our CONTRIBUTING.md and fill out the issue template at babel/issues!

Want to contribute to Babel?

Check out:

Some resources:

How is the repo structured?

The Babel repo is managed as a monorepo that is composed of many npm packages.

License

MIT