- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
47 lines
671 B
Markdown
47 lines
671 B
Markdown
# parse-ms
|
|
|
|
> Parse milliseconds into an object
|
|
|
|
## Install
|
|
|
|
```sh
|
|
npm install parse-ms
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
import parseMilliseconds from 'parse-ms';
|
|
|
|
parseMilliseconds(1337000001);
|
|
/*
|
|
{
|
|
days: 15,
|
|
hours: 11,
|
|
minutes: 23,
|
|
seconds: 20,
|
|
milliseconds: 1,
|
|
microseconds: 0,
|
|
nanoseconds: 0
|
|
}
|
|
*/
|
|
|
|
parseMilliseconds(1337000001n);
|
|
/*
|
|
{
|
|
days: 15n,
|
|
hours: 11n,
|
|
minutes: 23n,
|
|
seconds: 20n,
|
|
milliseconds: 1n,
|
|
microseconds: 0n,
|
|
nanoseconds: 0n
|
|
}
|
|
*/
|
|
```
|
|
|
|
## Related
|
|
|
|
- [to-milliseconds](https://github.com/sindresorhus/to-milliseconds) - The inverse of this module
|
|
- [pretty-ms](https://github.com/sindresorhus/pretty-ms) - Convert milliseconds to a human readable string
|