New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stardust

Package Overview
Dependencies
Maintainers
1
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stardust

Semantic UI components for React.

  • 0.9.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
increased by25%
Maintainers
1
Weekly downloads
 
Created
Source

Stardust Code Climate Gemnasium Circle CI

A React component library based on the delightful and easy-to-use Semantic UI.

Getting Started

Hey, we're in development. Minor versions may introduce breaking changes until the v1.0 release. Please review Contributing before submitting a PR.

Installation

Install and save Stardust as a project dependency:

npm i stardust -S

Stardust is built with ES6 and ES7 and needs to be compiled. We use Babel with a .babelrc file. If you're using Webpack it's also possible to specify query in the loader configuration with Babel presets.

Usage

For more complete examples, check out the Doc Site.

ES6

import React, {Component} from 'react';
import {Button} from 'stardust';

export default class TryStardust extends Component {
  render() {
    return <Button>Hello</Button>;
  }
}

ES5

var React = require('react');
var stardust = require('stardust');
var Button = stardust.Button;

var TryStardust = React.createClass({
  render: function() {
    return <Button>Make it happen!</Button>;
  }
});

module.exports = TryStardust;

Development

Start by cloning this repo and installing dependencies:

git clone git@github.com:TechnologyAdvice/stardust.git
cd stardust
npm install               # or simply npm i

Once dependencies are installed, start the application with:

npm start

This will start a Webpack Dev Server which will watch your JS files for changes and automatically transpile, lint and provide source maps for development.

Commands

For a listing of development commands use the following:

npm run                   # list npm commands 
gulp help                 # list gulp commands

Deploying

npm version <version>     # bump the new version
npm run deploy            # pushes tags and publishes package

Contributing

Before submitting PRs please review our Component Guidelines and Roadmap.

FAQs

Package last updated on 04 Jan 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc