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

@requestnetwork/create-request-form

Package Overview
Dependencies
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@requestnetwork/create-request-form

## Introduction

  • 0.1.0
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Maintainers
8
Created
Source

Request Network Create Request Form Component 📚

Introduction

This package offers a Web Component for integrating the Request Network's Create Request Form into web applications. It is built using Svelte but compiled to a Web Component, making it usable in any web environment, regardless of the framework

Installation

To install the component, use npm:

npm install @requestnetwork/create-request-form

This command adds the create request form component to your project, allowing for easy integration into any web application.

Usage

As a Web Component

Import the component into your JavaScript or TypeScript file:

import '@requestnetwork/create-request-form'

Then, you can use the component directly in your HTML:

<create-request-form config={config} requestNetwork={requestNetworkInstance} signer={walletAccount} />

In Svelte Projects

After installing, import and use the component directly in your Svelte files:

<script>
    import CreateRequestForm from '@requestnetwork/create-request-form';
</script>

<CreateRequestForm />

In React Projects

To use in a React application, ensure the component is included in your project:

import '@requestnetwork/create-request-form'

Then use it like any other React component:

export default function App() {
    return <create-request-form></create-request-form>;
}

In Vanilla JavaScript

For use in projects without a build process, include the component via script tag, either locally or from a CDN:

<script src="./node_modules/@requestnetwork/create-request-form/dist/index.js" defer></script>
<!-- or from a CDN -->
<script src="https://unpkg.com/@requestnetwork/create-request-form" defer></script>

<create-request-form></create-request-form>

Additional Information

For more detailed information on using the Request Network and custom configurations, refer to the official Request Network documentation.

FAQs

Package last updated on 07 May 2024

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