项目作者: extwiii

项目描述 :
timestamp microserver
高级语言: HTML
项目地址: git://github.com/extwiii/timestamp.git
创建时间: 2016-09-03T13:39:52Z
项目社区:https://github.com/extwiii/timestamp

开源协议:Apache License 2.0

下载


Author

<a href=@extwiii">

Created by Bilal Cagiran

E-Mail | Github | LinkedIn | CodePen | Blog/Site | FreeCodeCamp

DEMO : https://extwiii-timestamp.herokuapp.com/

Timestamp Microservice API

User stories:

  1. I can pass a string as a parameter, and it will check to see whether that string contains either a unix timestamp or a natural language date (example: 15 July, 2016)
  2. If it does, it returns both the Unix timestamp and the natural language form of that date.
  3. If it does not contain a date or Unix timestamp, it returns null for those properties.

Example usage:

  1. https://extwiii-timestamp.herokuapp.com/15 July 2016/
  2. https://extwiii-timestamp.herokuapp.com/1468540800000

Example output:

  1. {"unix":1468540800000,"natural":"July 15, 2016"}