New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@godown/react

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@godown/react

React components for godown

latest
Source
npmnpm
Version
3.14.2
Version published
Weekly downloads
90
462.5%
Maintainers
1
Weekly downloads
 
Created
Source

@godown/react

npm i @godown/react

This package provides default conversion for React.

Usage

JSX element

import Alert from "@godown/react/alert";

export default function () {
  return <Alert title="Alert" />;
}

Intrinsic element

import "@godown/react/alert";

export default function () {
  return <godown-alert title="Alert" />;
}

Convert to React component

import { createReact } from "@godown/react/lib/create";

import { MyElement } from "./my-element-definition.js";

MyElement.elementTagName = "my-element";

const MyElementReact = createReact(MyElement, eventMap<
{
  onMyEvent: CustomEvent<any>;
}
>({
  onMyEvent: "my-event",
}));

Keywords

web-components

FAQs

Package last updated on 06 Sep 2025

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