Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

as-core-ui

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

as-core-ui

## Get Started

  • 0.0.13
  • unpublished
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-99.75%
Maintainers
1
Weekly downloads
 
Created
Source

web-component-linaria-starter-kit

Get Started

  1. git clone https://github.com/cloudshadow/web-component-linaria-starter-kit.git
  2. npm install
  3. run in terminal openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 365 -keyout localhost.key -out localhost.crt to create self-signed certificate
  4. npm run storybook

Usage

import {ComponentName} from 'your-npm-package-name';

<ComponentName />

// or

<html>
  <head>
    <script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js" ></script>
    <script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" ></script>
    <script crossorigin src="https://unpkg.com/babel-standalone@6.26.0/babel.js" ></script>
    <!-- index.umd.js this file was generated after you run build command -->
    <script crossorigin src="./index.umd.js"></script>
  </head>
  <body>
    <div id="root"></div>
    <script src="./index.js" type="text/babel"></script>
  </body>
</html>


// ./index.js
// Ex: const {Button} = CloudCoreUI;
const {ComponentName} = NameConfigInRollup;
ReactDOM.render(<Button>test</Button>, document.getElementById('root'));

Browser Support

Linaria use css variables please check the borwser support on https://caniuse.com/?search=CSS%20Variables

FAQs

Package last updated on 06 Nov 2023

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