An open API service indexing awesome lists of open source software.

https://github.com/codespec/react-toolset

React component library
https://github.com/codespec/react-toolset

javascript react toolset ui-components

Last synced: 6 months ago
JSON representation

React component library

Awesome Lists containing this project

README

          

React Toolset

React Toolset

[![Build Status](https://travis-ci.org/codespec/react-toolset.svg?branch=master)](https://travis-ci.org/codespec/react-toolset)
[![npm](https://img.shields.io/npm/v/@codespec/react-toolset.svg)](https://www.npmjs.com/package/@codespec/react-toolset)
[![npm](https://img.shields.io/npm/dm/@codespec/react-toolset.svg)](https://www.npmjs.com/package/@codespec/react-toolset)

Independent set of React UI Components for your application.

## Install

```sh
# npm users
$ npm i --save @codespec/react-toolset

# yarn users
$ yarn add @codespec/react-toolset
```

## Documentation

- https://codespec.github.io/react-toolset/docs/

## How to use

### When using compiled source

```js
import { Button } from '@codespec/react-toolset'
```

### When using not complied source

1. Set up Webpack configuration

```js
// Add this loaders in your webpack.config.js
// You should not exclude node_modules directory from it.
// This is just an example.
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
query: {
cacheDirectory: true,
presets: ['es2015', 'react'],
},
},
{
test: /\.scss$/,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules:true,
localIdentName: '[local]-[hash:base64:5]'
}
},
{
loader: 'sass-loader',
options: {
plugins: () => [require('autoprefixer')]
}
}
]
},
]
}
```

2. Import individual component from your application

```jsx
import { Button } from '@codespec/react-toolset/src'
```

### If you are using `create-react-app`, use need to follow this.

1. Eject your predefined configuration

```sh
yarn eject
```

2. Configure the Webpack like as follow

```js
// Process JS with Babel.
{
test: /\.(js|jsx)$/,
include: [paths.appSrc, /node_modules\/@codespec/], // add @codespec module to include
loader: require.resolve('babel-loader'),
options: {

// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
// directory for faster rebuilds.
cacheDirectory: true,
},
},
```

3. Configure SCSS as above