astro/packages/integrations/deno
Tony Sullivan b8c6dabfb7
Enables eslint on the full repo and adds a rule for no only() tests (#3659)
* enabling eslint on the all packages and tests

* enabling for all packages

* TEMP: adding an only() test to verify it fails CI

* using our eslint config and ignore in CI

* removing the temporary .only() test

* update lock file

* lint: fixing new test with a no-shadow warning

* chore: update lock file
2022-06-22 15:59:49 +00:00
..
src Enables eslint on the full repo and adds a rule for no only() tests (#3659) 2022-06-22 15:59:49 +00:00
test Fix react dependencies to improve test reliability (#3673) 2022-06-22 09:11:48 -04:00
CHANGELOG.md [ci] release (#3666) 2022-06-22 10:05:21 -04:00
package.json [ci] release (#3666) 2022-06-22 10:05:21 -04:00
readme.md Deno adapter (#2934) 2022-03-30 08:42:19 -04:00
tsconfig.json Deno adapter (#2934) 2022-03-30 08:42:19 -04:00

@astrojs/deno

A server-side rendering adapter for use with Deno targets. Write your code in Astro/Node and deploy to Deno servers.

In your astro.config.mjs use:

import { defineConfig } from 'astro/config';
import deno from '@astrojs/deno';

export default defineConfig({
  adapter: deno()
});

After performing a build there will be a dist/server/entry.mjs module. You can start a server simply by importing this module:

import './dist/entry.mjs';

API

Adapter options

This adapter automatically starts a server when it is imported. You can configure this through options:

import { defineConfig } from 'astro/config';
import deno from '@astrojs/deno';

export default defineConfig({
  adapter: deno({
    start: false
  })
});

If disabling start you need to write your own web server and use handle to render requests:

import { serve } from "https://deno.land/std@0.132.0/http/server.ts";
import { handle } from './dist/entry.mjs';

serve((req: Request) => {
  // Check the request, maybe do static file handling here.

  return handle(req);
});

You an also pass in a port/hostname to use:

import { defineConfig } from 'astro/config';
import deno from '@astrojs/deno';

export default defineConfig({
  adapter: deno({
    port: 8081,
    hostname: 'myhost'
  })
});