{"id":25322429,"url":"https://github.com/checkernetwork/arweave-checker","last_synced_at":"2025-07-19T08:34:16.046Z","repository":{"id":271893598,"uuid":"914483411","full_name":"CheckerNetwork/arweave-checker","owner":"CheckerNetwork","description":"Arweave subnet checker","archived":false,"fork":false,"pushed_at":"2025-05-07T08:18:45.000Z","size":203,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-16T02:13:49.696Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CheckerNetwork.png","metadata":{"files":{"readme":null,"changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-09T17:25:35.000Z","updated_at":"2025-05-07T08:18:46.000Z","dependencies_parsed_at":"2025-01-10T15:47:55.957Z","dependency_job_id":"d76e4721-cd12-4581-81a0-1e05a436074f","html_url":"https://github.com/CheckerNetwork/arweave-checker","commit_stats":null,"previous_names":["checker-network/arweave","checkernetwork/arweave","checkernetwork/arweave-subnet-poc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CheckerNetwork/arweave-checker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Farweave-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Farweave-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Farweave-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Farweave-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CheckerNetwork","download_url":"https://codeload.github.com/CheckerNetwork/arweave-checker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Farweave-checker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265905116,"owners_count":23846696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-13T23:40:46.380Z","updated_at":"2025-07-19T08:34:16.035Z","avatar_url":"https://github.com/CheckerNetwork.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Arweave Checker\n\nThis is an Observable Framework repo structure with some data gathering scripts for the Arweave checker PoC. The checker scripts are in the /src/scripts folder.\n\nRun\n\n```\nnpm install\n```\n\nThen you can run\n\n```\nnode ./src/scripts/list.js\n```\n\nto get a list of nodes in /src/data/arweave-nodes.js\n\n```\nnode ./src/scripts/ping.js\n```\n\nto run a ping test on the arweave nodes in /src/data/arweave-nodes.json\n\nAnd you can run\n\n```\nnode ./src/scripts/retrieve.js\n```\n\nto retrieve the sample transactions in /src/data/random-transactions.json from the nodes in /src/data/arweave-nodes.json\n\nThen follow the below steps to see the data visualised in the Observable dashboard\n\n## Observable structure\n\nThis is an [Observable Framework](https://observablehq.com/framework/) app. To install the required dependencies, run:\n\n```\nnpm install\n```\n\nThen, to start the local preview server, run:\n\n```\nnpm run dev\n```\n\nThen visit \u003chttp://localhost:3000\u003e to preview your app.\n\nFor more, see \u003chttps://observablehq.com/framework/getting-started\u003e.\n\n## Project structure\n\nA typical Framework project looks like this:\n\n```ini\n.\n├─ src\n│  ├─ components\n│  │  └─ timeline.js           # an importable module\n│  ├─ data\n│  │  ├─ launches.csv.js       # a data loader\n│  │  └─ events.json           # a static data file\n│  ├─ example-dashboard.md     # a page\n│  ├─ example-report.md        # another page\n│  └─ index.md                 # the home page\n├─ .gitignore\n├─ observablehq.config.js      # the app config file\n├─ package.json\n└─ README.md\n```\n\n**`src`** - This is the “source root” — where your source files live. Pages go here. Each page is a Markdown file. Observable Framework uses [file-based routing](https://observablehq.com/framework/project-structure#routing), which means that the name of the file controls where the page is served. You can create as many pages as you like. Use folders to organize your pages.\n\n**`src/index.md`** - This is the home page for your app. You can have as many additional pages as you’d like, but you should always have a home page, too.\n\n**`src/data`** - You can put [data loaders](https://observablehq.com/framework/data-loaders) or static data files anywhere in your source root, but we recommend putting them here.\n\n**`src/components`** - You can put shared [JavaScript modules](https://observablehq.com/framework/imports) anywhere in your source root, but we recommend putting them here. This helps you pull code out of Markdown files and into JavaScript modules, making it easier to reuse code across pages, write tests and run linters, and even share code with vanilla web applications.\n\n**`observablehq.config.js`** - This is the [app configuration](https://observablehq.com/framework/config) file, such as the pages and sections in the sidebar navigation, and the app’s title.\n\n## Command reference\n\n| Command              | Description                                 |\n| -------------------- | ------------------------------------------- |\n| `npm install`        | Install or reinstall dependencies           |\n| `npm run dev`        | Start local preview server                  |\n| `npm run build`      | Build your static site, generating `./dist` |\n| `npm run deploy`     | Deploy your app to Observable               |\n| `npm run clean`      | Clear the local data loader cache           |\n| `npm run observable` | Run commands like `observable help`         |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckernetwork%2Farweave-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcheckernetwork%2Farweave-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckernetwork%2Farweave-checker/lists"}