A super simple Remix web app that converts Unix timestamps to dates, and vice-versa.
This project has been configured to be deployed to Vercel. However, it's fairly easy to deploy it anywhere else. Here's how to deploy it your own Node.js server:
- Fork this repo and clone the fork locally:
git clone https://github.com/<your-username>/unixdt
- Install dependencies
npm install
- Replace all usages of
@vercel/remixwith@remix-run/node.- You can uninstall
@vercel/remixat this stage
- You can uninstall
- Build the app:
npm run build
- Start the app:
npm start
- Configure your server to serve requests (e.g., using nginx) from the port unixdt is running on.
Tip
Use a process manager like pm2 to keep your app running on your server.