Rust + Typescript / Data Fetching Library
rust_data_fetch
├── src
│ ├── lib.rs (Rust library entry point)
│ ├── fetcher.rs (Data fetching implementation in Rust)
│ ├── api.ts (Javascript API for your library)
│ └── index.ts (Bridge between Rust and Javascript)
├── tests
│ └── fetcher_tests.rs (Rust tests for data fetching)
├── Cargo.toml (Rust dependency and build configuration)
└── package.json (Node.js dependency and build configuration)