the important stuff

This commit is contained in:
stjet
2024-06-06 08:58:57 +00:00
commit e044226e22
34 changed files with 2379 additions and 0 deletions

7
node_test/index.js Normal file
View File

@@ -0,0 +1,7 @@
import * as banani from "../main.js";
let rpc = new banani.RPC("https://kaliumapi.appditto.com/api");
console.log(rpc.rpc_url);
//

12
node_test/package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "node_test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"type": "module"
}