@owenlovescoding/rx_norm_sdk
v1.1.1
Published
An Informed RxNorm API client for JavaScript and TypeScript.
Readme
📦 The "No-Config" SDK This SDK is pre-configured to communicate directly with our medical data backend. You don’t need to manage API keys or base URLs—just install it and start querying RxNorm data immediately.
🚀 How to Use
- Install
Bash npm install @owenlovescoding/rx_norm_sdk 2. Initialize (No parameters needed!)
TypeScript import { RxNorm } from "@owenlovescoding/rx_norm_sdk";
const sdk = new RxNorm(); 3. Fetch Data
TypeScript // Get search suggestions const suggestions = await sdk.suggestions.get("morph");
// Get full drug data const drugData = await sdk.drugs.search(["morphine"]);
// Generate a ready-to-view HTML report const htmlReport = await sdk.drugs.report("aspirin");
