You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
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
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

as-core-ui

## Get Started

0.0.13
unpublished
npmnpm
Version published
Weekly downloads
2
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

web-component-linaria-starter-kit

Get Started

  • git clone https://github.com/cloudshadow/web-component-linaria-starter-kit.git
  • npm install
  • run in terminal openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 365 -keyout localhost.key -out localhost.crt to create self-signed certificate
  • 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