# dexcom-share **Repository Path**: mirrors_TooTallNate/dexcom-share ## Basic Information - **Project Name**: dexcom-share - **Description**: Async Iterator API for reading blood glucose readings from Dexcom's Share servers - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dexcom-share This JavaScript module provides an [Async Iterator API][] for reading blood glucose readings from Dexcom's Share servers. ### Example ```js const dexcom = require('dexcom-share') async function main() { const iterator = dexcom({ username: 'DEXCOM_SHARE_USERNAME', password: 'DEXCOM_SHARE_PASSWORD' }) for await (const reading of iterator) { console.log(reading) /* { DT: '/Date(1515095827000-0800)/', ST: '/Date(1515095827000)/', Trend: 4, Value: 123, WT: '/Date(1515095827000)/', Date: 1515095827000 } */ } } main().catch(err => { console.error(err) process.exit(1) }) ``` [Async Iterator API]: https://github.com/tc39/proposal-async-iteration