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

webln-v4v

v1.0.0-beta.34

Published

A library for easily rendering a form on-page that lets your webpage visitors send Bitcoin Lightning payments with a WebLN compatible browser extension. This library is intended to be used with the Podcasting 2.0 RSS namespace <podcast:value> for keysend

Downloads

65

Readme

🏗 webln-v4v

v1.0.0-beta.33 License: MIT Powered By Svelte Language: TypeScript ECMAScript: 2019 Discord Server

A library for easily rendering a form on-page that lets your webpage visitors send Bitcoin Lightning payments with a WebLN compatible browser extension. This library is intended to be used with the Podcasting 2.0 RSS namespace podcast:value for keysend payments..

DISCLAIMER 🚨🚨🚨

This is an experimental library. The software is provided AS-IS, we make no guarantees of its reliability, we are not responsible if your funds go missing or are sent to the wrong address, and you and your users assume all risks associated with using it.

Quick Start

The best place to start is with the quick start guide. Hopefully it's as easy as copy/pasting a few lines into html.

Supported Browser Extensions

This widget will only render on a web page if it detects that the user has an LNURL compatible browser extension installed.

Currently supported browser extensions include:

Alby

Attribution / Donate to Patrick

Thank you to @ptkdev for creating the svelte-webcomponent-boilerplate. This project was built on top of this boilerplate. Please consider donating to Patrick for his great work.

Support Podverse

Podverse is free / open source / copylefted libre software, and we would greatly appreciate your donations or pull requests 🙏

Donate Paypal Donate Patreon Donate Bitcoin

📎 Menu

💡 Features

  • [✔️] Easy to use
  • [✔️] MIT License
  • [✔️] Text animation by Nooray Yemon on Codepen
  • [✔️] Friendly boilerplate + Github templates
  • [✔️] Powered by svelte framework
  • [✔️] Without jQuery depencence
  • [✔️] Configurable with attributes
  • [✔️] Customization with CSS Style
  • [✔️] HTML5 Custom Elements - Native webcomponents
  • [✔️] Work with: Browserify / Webpack / ReactJS / Svelte / Angular / Vue / Wordpress
  • [✔️] Typescript + TSPaths preconfigured
  • [✔️] Userfriendly folders tree
  • [✔️] Prettiers and ESLint preconfigured
  • [✔️] all-contributors-cli and all-shields-cli preconfigured
  • [✔️] JEST Test preconfigured
  • [✔️] Full async code
  • [✔️] Github and Vscode dotfiles preconfigured
  • [✔️] Translations i18n (Help me ❤️)

🚀 Installation (Web)

  1. Add html code to your page:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
  1. Require javascript in yourpage (before </body>):
<script src="https://cdn.jsdelivr.net/npm/webln-v4v@latest/dist/webcomponent.js"></script>

You can replace @latest with specific version, example @2.0.1.

Below is available a description of options values.

📦 Installation (NPM Module - Browserify/Webpack)

  1. Install npm module: npm install webln-v4v --save
  2. Add html code to your page:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
  1. Require javascript in your app:
require("webln-v4v");

or

import "webln-v4v";

Below is available a description of options values.

📖 Installation (Wordpress)

  1. Download wordpress plugin from mirror and install it.
  2. Add code to your html widget, example: Appearance --> Widget --> insert HTML Widget and paste html code:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

You can insert this html code in posts, widget, html box or theme.

🔵 Installation (React)

  1. Install npm module with npm install webln-v4v@latest --save:
  2. Import module in your src/App.js on header:
import "webln-v4v";
  1. Add html code to your App.js template:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

🔴 Installation (Angular)

  1. Install npm module with npm install webln-v4v@latest --save:
  2. Import module in your app/app.modules.ts on header:
import "webln-v4v";
  1. Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

🟠 Installation (Svelte)

  1. Install npm module with npm install webln-v4v@latest --save:
  2. Import module in your src/App.svelte on header:
import "webln-v4v";
  1. Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

🟢 Installation (Vue)

  1. Install npm module with npm install webln-v4v@latest --save:
  2. Import module in your src/App.vue and add webcomponent to ignoreElements of vue config:
import Vue from "vue";
import "webln-v4v";

Vue.config.ignoredElements = ["webln-v4v"];
  1. Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

🧰 Options / Attributes

| Parameter | Description | Values | Default value | Available since | | --------- | -------------------------------------------- | ------------------ | --------------------------------- | --------------- | | header | Setup top text | String | make | v1.0.20210319 | | flip | Setup middle flip text (separte with commas) | String with commas | svelte,webcomponents,opensource | v1.0.20210319 | | footer | Setup bottom text | String | awesome! | v1.0.20210319 |

HTML Code with attributes:

<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>

🎨 CSS Customization

You can overwrite default css with selector ::part, example:

<style>
	webln-v4v::part(flip) {
		border: 2px solid red;
	}
</style>

Part attribute is, generally, suffix of a class. Use chrome inspector for get the correct value of part="" attributes. See MDN selector ::part docs.

🔨 Developer Mode

🏁 Run Project

  1. Clone this repository or download nightly, beta or stable.
  2. Run npm install
  3. Run npm run dev
  4. Run http://localhost:5000

💾 Setup Project

If you want replace all strings (example: package name, author, urls, etc...) in markdown file, source files and others files of this project you need edit setup.json with correct values and run npm run setup.

📚 Documentation

Run npm run docs

💫 License

  • Code and Contributions have MIT License
  • Images and logos have CC BY-NC 4.0 License
  • Documentations and Translations have CC BY 4.0 License
Copyleft (c) 2021 Mitch Downey (@Podverse)