npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

abraka_dabra47

v2.0.10

Published

Decentralise payment infrastructure. Integrate crypto payment facilities without any hassle!

Downloads

30

Readme

Resmic

Decentralised | Non-Custodial | P2P Payment Infrastructure

Welcome to Resmic, your go-to solution for accepting a variety of crypto payments in a 100% decentralised & non-custodial manner. Resmic is an NPM package that empowers individuals and businesses to seamlessly integrate cryptocurrency payments into their applications and websites.

With Resmic, you can easily accept payments in Bitcoin, Ethereum, and many other cryptocurrencies, giving your customers more flexibility and convenience.

Demo

Resmic Demo

Features

Resmic comes with a range of features designed to make crypto payments accessible and secure:

  • Multi-Currency Support: Accept payments in a wide variety of cryptocurrencies, including Bitcoin, Ethereum, USDT, and more.

  • Decentralised and Non-Custodial: Resmic operates on a decentralised infrastructure, ensuring that you have full control over your funds without relying on a third party.

  • Customizable Payment Flow: Tailor the payment flow to match your branding and user experience.

  • 0 DownTime: Operates without any reliance on traditional server infrastructure.

  • 0 Fees: No expenses or charges associated with the service.

  • Security: Security is a paramount concern in the world of cryptocurrency payments, and Resmic takes it seriously with our most secure infrastructure.

Installation

Install Resmic components with npm

  npm install resmic

Usage

Here's a simple example of how you can use Resmic to accept a crypto payment:

For EVM Blockchains

import { useState } from 'react';
import {EVMConnect, Tokens, Chains} from 'resmic'

function App() {

	const [paymentStatus, setPaymentStatus] = useState() // Returns bool after the payment
	
	// Your code...

  return (
	<div>
	    <EVMConnect  Address={"YOUR_WALLET_ADDRESS"} //Wallet address to receive funds
	        Chains={[ Chains.Ethereum, Chains.Polygon, Chains.Binance, Chains.Goerli]} //Choose the blockchains to allow payments from
        	Tokens ={[Tokens.USDC,Tokens.USDT, Tokens.DAI, Tokens.BUSD, Tokens.MATIC, Tokens.ETH , Tokens.GETH, Tokens.Bitcoin]} //Choose the Tokens to accept payments from
                Amount={100} //Amount you want to receive in USD($)
                setPaymentStatus = {setPaymentStatus}
                noOfBlockConformation={2} //No. of blocks to wait for the payment conformation (Optional)
                Style = {{displayName: "Make Payment", 
                    backgroundColor: "#007bff",
                    color: "#fff",
                    border: "none",
                    padding: "10px 20px",
                    borderRadius: "4px",
                    fontSize: "18px"}}
	    />
	</div>
  )
}

For Starknet Blockchain

import { useState } from 'react';
import {StarkNetConnect, StarkTokens} from 'resmic'

function App() {

	const [paymentStatus, setPaymentStatus] = useState() // Returns bool after the payment
	
	// Your code...

  return (
	<div>
	    <StarkNetConnect Address={"YOUR_WALLET_ADDRESS"} //Wallet address to receive funds
	        Tokens = {[StarkTokens.USDT, StarkTokens.USDC, StarkTokens.ETH, StarkTokens.Bitcoin]} //Choose the Tokens to accept payments from
	        Amount={100} //Amount you want to receive in USD($)
	        setPaymentStatus = {setPaymentStatus} 
	        Style = {{displayName: "Make Payment", 
	            backgroundColor: "#007bff",
                    color: "#fff",
                    border: "none",
                    padding: "10px 20px",
                    borderRadius: "4px",
                    fontSize: "18px"}}
	    />
	</div>
  )
}

For more detailed information on how to use Resmic, please refer to our documentation

Support

If you encounter any issues, have questions, or want to provide feedback, please feel free to reach out to our support team at [email protected]. We value your input and are committed to helping you make the most of Resmic.

Documentation

Ready to get started? Read installation instructions.

🏅 Backers

Like This Project?

Support us: Wallet address: 0x056397760b973BfB921Bc10Be9DA5034B1e921d7 or Buy us a coffee

License

MIT