typezero
Version:
Zero-config TypeScript starter for modern Node.js development. ESM, Biome, Vitest. Production-ready in seconds! ⚡
20 lines (16 loc) • 461 B
text/typescript
import "dotenv/config";
process.on("SIGINT", () => {
console.log("\nGracefully shutting down");
process.exit(0);
});
export function main() {
try {
console.log("🎉 Party time! Your app is ready to rock!\n");
console.log("👉 Edit \x1b[38;5;208msrc/index.ts\x1b[0m and watch the magic happen here!");
console.log(" Lets build something amazing!\n");
} catch (error) {
console.error("Failed to start:", error);
process.exit(1);
}
}
main();