https://github.com/extwiii/timestamp
timestamp microserver
https://github.com/extwiii/timestamp
api extwiii javascript natural-language nodejs timestamp unix-timestamp
Last synced: 3 months ago
JSON representation
timestamp microserver
- Host: GitHub
- URL: https://github.com/extwiii/timestamp
- Owner: extwiii
- License: apache-2.0
- Created: 2016-09-03T13:39:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-19T10:57:01.000Z (over 8 years ago)
- Last Synced: 2025-01-28T12:17:05.692Z (5 months ago)
- Topics: api, extwiii, javascript, natural-language, nodejs, timestamp, unix-timestamp
- Language: HTML
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Author
Created by Bilal Cagiran
[E-Mail](mailto:[email protected]) | [Github](https://github.com/extwiii/) | [LinkedIn](https://linkedin.com/in/bilalcagiran) | [CodePen](http://codepen.io/extwiii/) | [Blog/Site](http://bilalcagiran.com) | [FreeCodeCamp](https://www.freecodecamp.com/extwiii)
### 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:
```url
https://extwiii-timestamp.herokuapp.com/15 July 2016/
https://extwiii-timestamp.herokuapp.com/1468540800000
```## Example output:
```json
{"unix":1468540800000,"natural":"July 15, 2016"}
```