Socket
Socket
Sign inDemoInstall

tailor-ui

Package Overview
Dependencies
27
Maintainers
2
Versions
127
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tailor-ui

A bespoke UI collection for building web application.


Version published
Maintainers
2
Install size
71.3 MB
Created

Readme

Source

Tailor UI

npm CircleCI style: styled-components Netlify Status

Documentation

Check out our documentation website.

Installation

# with npm
npm install tailor-ui

# with yarn
yarn add tailor-ui

Usage

Here is a quick example to get you started, it's all you need:

import React from 'react';
import ReactDOM from 'react-dom';
import { Button, UIProvider } from 'tailor-ui';

const App = () => (
  <UIProvider>
    <Button>Hello World</Button>
  </UIProvider>
);

ReactDOM.render(<App />, document.querySelector('#root'));

Development

git clone git@github.com:Yoctol/tailor-ui.git

First, open the terminal to watch the file changing and do the type checking:

cd tailor-ui
yarn watch

And then, open another tab to run the project:

cd tailor-ui
yarn start

Release

  • Send PR to develop branch during development.
  • When you want to release the version, merge develop branch into master branch, and then sematic release will automatically release new version on CI.
  • After new version released, merge master back to develop.

FAQs

Last updated on 15 Jul 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc