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..
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.
The best place to start is with the quick start guide. Hopefully it's as easy as copy/pasting a few lines into html.
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:
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.
Podverse is free / open source / copylefted libre software, and we would greatly appreciate your donations or pull requests π
- π‘ Features
- πΉ Demo - TODO: coming soon
- π Screenshot - TODO: coming soon
- π How to use
-
- π Web
-
- π¦ Webpack/Browserify
-
- π Wordpress
-
- π΅ React
-
- π΄ Angular
-
- π Svelte
-
- π’ Vue
- π Documentation
-
- π§° Options / Attributes
-
- π¨ CSS Customization
- π¨ Developer Mode
-
- π Run Project
-
- πΎ Setup Project
- π Known Bugs
- π» Community:
- Discord)
- [βοΈ] 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 β€οΈ)
- Add html code to your page:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
- 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.
- Install npm module:
npm install webln-v4v --save
- Add html code to your page:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
- Require javascript in your app:
require("webln-v4v");
or
import "webln-v4v";
Below is available a description of options
values.
- Download wordpress plugin from mirror and install it.
- Add code to your html widget, example:
Appearance
-->Widget
--> insertHTML 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.
- Install npm module with
npm install webln-v4v@latest --save
: - Import module in your
src/App.js
on header:
import "webln-v4v";
- Add html code to your
App.js
template:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
- Install npm module with
npm install webln-v4v@latest --save
: - Import module in your
app/app.modules.ts
on header:
import "webln-v4v";
- Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
- Install npm module with
npm install webln-v4v@latest --save
: - Import module in your
src/App.svelte
on header:
import "webln-v4v";
- Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
- Install npm module with
npm install webln-v4v@latest --save
: - 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"];
- Add html code to your html component:
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
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 |
<webln-v4v header="make" flip="svelte,webcomponents,opensource" footer="awesome!"></webln-v4v>
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.
- Clone this repository or download nightly, beta or stable.
- Run
npm install
- Run
npm run dev
- Run
http://localhost:5000
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
.
Run npm run docs
- 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