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

@solana-foundation/solana-lib

v2.39.0

Published

## Node

Downloads

698

Readme

Getting Started

Node

This project uses Node v20.2.0 and has an .nvmrc. If you have nvm installed you can run nvm use to switch to the correct version.

If you don't have nvm installed you can install it here.

Workflow

Linking

The recommended workflow to test within the Solana Next.js site is to run TSDX in dev mode:

yarn start

After modules have compiled and watcher is running, build the tailwind css file:

yarn build-tailwind

This builds to /dist and runs the project in watch mode so any edits you save inside src cause a rebuild to /dist.

You can then symlink the package to Solana's codebase so you can import your modules from the dev build.

To link:

# In the root of this project
yarn link

Navigate to your local build of Solana's Next site and run:

# In the root of the Solana Next.js site
yarn link @solana-foundation/solana-lib

You can now import from @solana-foundation/solana-lib and test locally.

Storybook

Run inside another terminal:

yarn storybook

This loads the stories from all files with .stories.

Storybook runs on port http://localhost:6006/ by default.

File Architecture

This is the basic folder structure for this project:

├── src
│   ├── components
│   │   └── CoolComponent
│   │       ├── coolComponent.stories.tsx
│   │       └── index.tsx
│   ├── molecules
│   │   └── Button
│   │       ├── button.stories.tsx
│   │       └── index.tsx
│   ├── index.tsx       # Entry Point
│   └── tailwind.css    # Style Entry
│

Development

Configuration

Code quality is set up for you with prettier, husky, and lint-staged. Adjustments can (and will) still be made, this is just a bare-bones setup.

TypeScript

tsconfig.json is set up to interpret dom and esnext types, as well as react for jsx. To prevent import errors we will add import React from 'react' at the top of each file that uses it.

Exports

Per Palmer Group guidelines, always use named exports. Code split inside your React app instead of your React library.

This library uses relative paths for imports. Absolute paths may still pass the build, but they will break when imported into another project.

Styles

Due to complications with Bootstrap all Tailwind utility classes are prefixed with tw-.

The entry point for the project is src/tailwind.css.

Icons

An icon sprite is currently generated from the src/assets/icons directory. To add to the icon sprite just add an SVG to the directory and run yarn gen:icons to create a new sprite.

To be less limiting in the style of icon, the generation process does NOT strip away inlined fill or stroke tags. So it's important that you process the SVG beforehand to be compliant with the needs of the icon.

Build

Module Formats

CJS, ESModules, and UMD module formats are supported.

The appropriate paths are configured in package.json and dist/index.js accordingly. Please report if any issues are found.

Rollup

TSDX uses Rollup as a bundler and generates multiple rollup configs for various module formats and build settings. See Optimizations for details.

Rollup uses a minifier called Terser that doesn't support typescript optional chaining. Because of this, we need to use vanilla null checks throughout this project.