This is my project of the Timestamp Microservice challenge for the freeCodeCamp API and Microservice certification.
https://timestamp-microsevice.sudirao21.repl.co/
# Install dependencies
$ npm install
# Run the app
$ npm start
Access it at localhost:3000
Endpoints | Description |
---|---|
GET /api/timestamp |
Return a date object with unix timestamp and UTC timestamp of the current timestamp |
GET /api/timestamp/{dateParam} |
Return a date object of the informed timestamp (unix or UTC ISO-8601) |
- [base url]/api/timestamp
- [base url]/api/timestamp/2015-12-25
- [base url]/api/timestamp/1451001600000
{
"unix":1451001600000,
"utc":"Fri, 25 Dec 2015 00:00:00 GMT"
}