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

easy-antd

v2.1.7

Published

<h1 align="center">Welcome to easy-antd ๐Ÿ‘‹</h1> <p> <img src="https://img.shields.io/badge/node-%3E%3D10-blue.svg" /> <img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" /> <img alt="Maintenance" src="ht

Downloads

15

Readme

Quickly render simple elements like table from the antd library

Easy Antd Table Preview Easy Antd Table Preview Easy Antd Table Preview

EasyTable


import {EasyTable} from "easy-antd"

export const MyComponent = () => (
    <EasyTable
      data={[
        { name: "John", age: 22 },
        { name: "Mike", age: 29 },
      ]}
      cols={[
        { title: "Name", key: "name", sort: "alphabetically" },
        { title: "Age", key: "age", sort: "numerically" },
      ]}
    />
)

Using the optional sort prop, you can make columns sortable.

type ColumnType = {
  title: string;
  key: string;
  sort?: "none" | "alphabetically" | "numerically"; // default: none
};

type EasyTableProps = {
  cols: ColumnType[];
  data: Object[];
};

You can always provide additional props. Documentation on props can be found here

<EasyTable cols={cols} data={data} size="small" />

Sponsor

โšฝ Booklified Football Manager is a browser based strategy game where you can become a football manager. Coach your favourite football club! https://fm-land.booklified.com

๐Ÿ“… Booklified is a scheduling app. It lets other people easily book on your calendar. https://booklified.com

โ–ถ๏ธ Youtube: โ–ถhttps://www.youtube.com/channel/UCa5K76Kap1iUqqML9JLhmxw

Author

๐Ÿ‘ค GorkemSinirlioglu

๐Ÿค Contributing

Contact me if you would like to access the source code, or if you are facing any issues.

Buy me Coffee โ˜•

If this project helped you

๐Ÿ“ License

This project is MIT licensed.