this repo has no description
atproto bluesky typescript express

deno support

+3 -3
+3 -3
src/index.ts
··· 1 - import path from "path"; 2 - import { fileURLToPath } from "url"; 1 + import crypto from "node:crypto"; 2 + import path from "node:path"; 3 + import { fileURLToPath } from "node:url"; 3 4 import express, { Express, Request, Response, NextFunction } from "express"; 4 5 import { AtpAgent, AtpSessionEvent, AtpSessionData } from "@atproto/api"; 5 6 import { engine } from "express-handlebars"; 6 7 import expressSession from "express-session"; 7 8 import cookieParser from "cookie-parser"; 8 9 import bodyParser from "body-parser"; 9 - import crypto from "crypto"; 10 10 import moment from "moment"; 11 11 12 12 import { NODE_ENV, SESSION_SECRET, PORT, PUBLIC_URL } from "./env.js";