Skip to content

Commit

Permalink
feat: Add Deno quick start (#106)
Browse files Browse the repository at this point in the history
* feat: Add Deno quick start

* rename import

* move stuff around

* remove tabs

* title of .env file

* feat: Add NestJS quick start (#108)

* feat: Add NestJS quick start

---------

Co-authored-by: David Mytton <[email protected]>

---------

Co-authored-by: David Mytton <[email protected]>
  • Loading branch information
blaine-arcjet and davidmytton authored Oct 2, 2024
1 parent 6ff55cf commit 534f812
Show file tree
Hide file tree
Showing 10 changed files with 722 additions and 7 deletions.
8 changes: 8 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ export default defineConfig({
label: "Bun + Hono",
link: "/get-started/bun-hono",
},
{
label: "Deno",
link: "/get-started/deno",
},
{
label: "NestJS",
link: "/get-started/nestjs",
},
{
label: "Next.js",
link: "/get-started/nextjs",
Expand Down
9 changes: 8 additions & 1 deletion env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference path="./.astro/types.d.ts" />
/// <reference types="astro/client" />

declare module "$env/dynamic/private" {
export const env: Record<string, string>;
}

declare module "npm:@arcjet/deno" {
import arcjet from "@arcjet/deno";

export * from "@arcjet/deno";
export default arcjet;
}
Loading

0 comments on commit 534f812

Please sign in to comment.