{"_id":"ts-tqdm","_rev":"9-c638d4f6e9ecc07ff6067d379eac2e89","name":"ts-tqdm","dist-tags":{"latest":"0.8.6"},"versions":{"0.8.0":{"name":"ts-tqdm","version":"0.8.0","description":"A tqdm for node (Typescript).","main":"src/index.ts","type":"module","types":"dist/index.d.ts","devDependencies":{"@types/node":"^20.3.3","typescript":"^5.1.6"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["tqdm","typescript","ts-tqdm","progress bar"],"homepage":"https://github.com/delarco/ts-tqdm","repository":{"type":"git","url":"git+https://github.com/delarco/ts-tqdm.git"},"author":{"name":"Leandro Del Arco","email":"leandrodelarco@outlook.com","url":"https://github.com/delarco"},"license":"MIT","gitHead":"2d231c61c0715a962c70567c2060c1e7ee26809c","bugs":{"url":"https://github.com/delarco/ts-tqdm/issues"},"_id":"ts-tqdm@0.8.0","_nodeVersion":"18.12.1","_npmVersion":"9.7.2","dist":{"integrity":"sha512-BsIL8LBgzErQv3UUNOinlJxJqcIdueqt5sFemoG1BywUHkuBmPXdjAQ20V1JKV2vSuZPiPfVTXX6Ncj45e6meg==","shasum":"f05e0c71ab0fbf9ad2a64a9d9e71750c2d9dceef","tarball":"https://registry.npmjs.org/ts-tqdm/-/ts-tqdm-0.8.0.tgz","fileCount":8,"unpackedSize":5597,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF1fR28VWwOTljrFLlGFfCiQ0dDSSNVQwDFEQssjxb5jAiATHfX7ByF6uQDIWZ20DsS02Exeh8HDvc7/qIlWEfPw5w=="}]},"_npmUser":{"name":"delarco","email":"leandrodelarco@outlook.com"},"directories":{},"maintainers":[{"name":"delarco","email":"leandrodelarco@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ts-tqdm_0.8.0_1688245158412_0.5092963956507055"},"_hasShrinkwrap":false},"0.8.6":{"name":"ts-tqdm","version":"0.8.6","description":"A tqdm for node (Typescript).","main":"dist/index.js","types":"dist/index.d.ts","devDependencies":{"@types/node":"^20.3.3","typescript":"^5.1.6"},"scripts":{"build":"tsc","test":"echo \"Error: no test specified\" && exit 1"},"keywords":["tqdm","typescript","ts-tqdm","progress bar"],"homepage":"https://github.com/delarco/ts-tqdm","repository":{"type":"git","url":"git+https://github.com/delarco/ts-tqdm.git"},"author":{"name":"Leandro Del Arco","email":"leandrodelarco@outlook.com","url":"https://github.com/delarco"},"license":"MIT","gitHead":"f9e6d1007b258f8af055eae095a7315bf6143da2","bugs":{"url":"https://github.com/delarco/ts-tqdm/issues"},"_id":"ts-tqdm@0.8.6","_nodeVersion":"18.12.1","_npmVersion":"9.7.2","dist":{"integrity":"sha512-3X3M1PZcHtgQbnwizL+xU8CAgbYbeLHrrDwL9xxcZZrV5J+e7loJm1XrXozHjSkl44J0Zg0SgA8rXbh83kCkcQ==","shasum":"bf0f1b3b373f38c5ccc8d0453a8f2462f805ed03","tarball":"https://registry.npmjs.org/ts-tqdm/-/ts-tqdm-0.8.6.tgz","fileCount":7,"unpackedSize":6154,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBwJeTHVljSQGWVn9kgU9BAu9iAzWStaWXxspOkjafRnAiBPKp6RERxsmV/thdjtY13JYVHIuY2ayNa3PhlUqxjqNQ=="}]},"_npmUser":{"name":"delarco","email":"leandrodelarco@outlook.com"},"directories":{},"maintainers":[{"name":"delarco","email":"leandrodelarco@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ts-tqdm_0.8.6_1688248126904_0.7402447861697075"},"_hasShrinkwrap":false}},"time":{"created":"2023-07-01T20:59:18.412Z","0.8.0":"2023-07-01T20:59:18.612Z","modified":"2023-07-01T21:48:47.283Z","0.8.1":"2023-07-01T21:04:55.473Z","0.8.2":"2023-07-01T21:07:25.226Z","0.8.3":"2023-07-01T21:18:49.099Z","0.8.5":"2023-07-01T21:32:38.002Z","0.8.6":"2023-07-01T21:48:47.145Z"},"maintainers":[{"name":"delarco","email":"leandrodelarco@outlook.com"}],"description":"A tqdm for node (Typescript).","homepage":"https://github.com/delarco/ts-tqdm","keywords":["tqdm","typescript","ts-tqdm","progress bar"],"repository":{"type":"git","url":"git+https://github.com/delarco/ts-tqdm.git"},"author":{"name":"Leandro Del Arco","email":"leandrodelarco@outlook.com","url":"https://github.com/delarco"},"bugs":{"url":"https://github.com/delarco/ts-tqdm/issues"},"license":"MIT","readme":"# ts-tqdm\nA tqdm for node (Typescript).\n\n## Installation\n\n### npm\n\n```cmd\nnpm install ts-tqdm\n```\n\n### source\n\n```cmd\nnpm install https://github.com/delarco/ts-tqdm.git\n```\n\n## Usage\n\nImport `ts-tqdm`\n\n```ts\nimport { tqdm } from \"ts-tqdm\"\n```\n\nArray:\n\n```ts\nfor (let item of tqdm([1, 2, 3, 4, 5, 6])) {\n    // do stuff\n}\n```\n\nFixed iterations:\n\n```ts\nfor (let item of tqdm(1000)) {\n    // do stuff\n}\n```\n\n### Example\n\n```ts\nimport { tqdm } from \"ts-tqdm\"\n\nconst delay = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));\n\n(async () => {\n\n    for (let _ of tqdm(1000)) {\n\n        await delay(100);\n    }\n})();\n```","readmeFilename":"README.md"}