1.0.0 • Published 2 years ago

@unode/egg-moment v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

egg-egg-momentjs

NPM version build status Test coverage David deps Known Vulnerabilities npm download

egg.js适配的moment.js插件。

依赖说明

依赖的 egg 版本

egg-egg-momentjs 版本egg 1.x
1.x😁
0.x

开启插件

// config/plugin.js
exports.moment = {
  enable: true,
  package: 'egg-moment',
};

详细配置

请到 config/config.default.js 查看详细配置项说明。

使用方法

插件自动挂载到app上,可以在servicecontroller等场景使用

// 基础使用,更多用法请参考moment.js官方文档
// controller/home.js

home() {
    const { app } = this
    // 获取当前毫秒时间戳
    const timestamp = app.moment().valueof()
    console.log(`时间戳为:${timestamp}`)
}

单元测试

提问交流

请到 egg issues 异步交流。

License

MIT