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

@tagmango-inc/design

v1.0.7

Published

Design system for TM

Downloads

1

Readme

TM Design System

TM Design System is a collection of reusable UI components and styles designed to provide a consistent and cohesive user experience across your applications.

For detailed usage instructions and component documentation, please refer to the documentation.

Features

  • Modular: Designed with modularity in mind, making it easy to pick and choose components as needed.
  • Customizable: Easily customize styles and themes to match your brand's visual identity.
  • Accessible: Prioritizes accessibility to ensure that your applications are usable by all users.
  • Documentation: Comprehensive documentation to guide you in using and extending the design system.

Table of Contents

Installation

To use Your Design System in your project, you can install it via npm or yarn:

npm install @tagmango-inc/design

Usage

Import and use components and styles from Your Design System in your React application:

import React from 'react';
import { Button, Input, ThemeProvider } from '@tagmango-inc/design';

function App() {
  return (
    <ThemeProvider>
      <div>
        <Button label="Click me" onClick={() => alert('Button clicked!')} />
        <Input placeholder="Enter text" />
      </div>
    </ThemeProvider>
  );
}

export default App;

For detailed usage instructions and component documentation, please refer to the documentation.

Customization

You can customize the design system to match your brand's visual identity by modifying the provided themes and styles. Refer to the customization guide in the documentation for more details.

Documentation

For comprehensive documentation, including usage examples, customization guides, and API reference, visit our documentation site.

License

Your Design System is licensed under the MIT License.


Please replace the following placeholders in the template with your actual content:

- `Your Design System`: Replace this with the name of your design system.
- `![Your Design System Logo](design-system-logo.png)`: If you have a logo or branding image, replace `design-system-logo.png` with the actual path to your logo image.
- Update the sections under "Usage," "Customization," "Contributing," "Documentation," and "License" with relevant information about your design system.

Save this content as `README.md` in the root directory of your design system project. It will serve as the primary documentation for your design system, helping users understand how to use and customize it.