Socket
Socket
Sign inDemoInstall

react-vapor

Package Overview
Dependencies
23
Maintainers
18
Versions
1193
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-vapor

Vapor CSS components implemented with React!


Version published
Weekly downloads
2.6K
increased by336.47%
Maintainers
18
Install size
45.4 MB
Created
Weekly downloads
 

Changelog

Source

31.3.1 (2021-12-21)

Note: Version bump only for package root

Readme

Source

React-Vapor

Build Status codecov Npm total downloads badge npm license

Coveo Administration Console's design system.

Have a look at react-vapor's demo page!

Getting started

Prerequisites

This repository uses some external libraries defined as peer dependencies. You must install those libraries in you own project in order for react-vapor to work properly. All peer dependencies are listed in the package.json file along with their respective version requirements.

Install

npm install react-vapor

If you want to use react-vapor in a TypeScript context, the package already includes its types.

Usage

In a .jsx context:

const React = require('react');
const ReactDom = require('react-dom');
const Badge = require('react-vapor').Badge;

ReactDom.render(<Badge label="Hello react-vapor!" />, document.getElementById('SomewhereInYourApp'));

In a .tsx context:

import * as React from 'react';
import * as ReactDom from 'react-dom';
import {Badge} from 'react-vapor';

ReactDom.render(<Badge label="Hello react-vapor!" />, document.getElementById('SomewhereInYourApp'));

Contributing

See our main page.

License

react-vapor is distributed under Apache 2.0 license.

Keywords

FAQs

Last updated on 21 Dec 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