Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@astrojs/cloudflare
Advanced tools
An SSR adapter for use with Cloudflare Pages Functions targets. Write your code in Astro/Javascript and deploy to Cloudflare Pages.
Add the Cloudflare adapter to enable SSR in your Astro project with the following astro add
command. This will install the adapter and make the appropriate changes to your astro.config.mjs
file in one step.
# Using NPM
npx astro add cloudflare
# Using Yarn
yarn astro add cloudflare
# Using PNPM
pnpm astro add cloudflare
If you prefer to install the adapter manually instead, complete the following two steps:
npm install @astrojs/cloudflare
astro.config.mjs
file:// astro.config.mjs
import { defineConfig } from 'astro/config';
import cloudflare from '@astrojs/cloudflare';
export default defineConfig({
output: 'server',
adapter: cloudflare()
});
mode: "advanced" | "directory"
default "advanced"
Cloudflare Pages has 2 different modes for deploying functions, advanced
mode which picks up the _worker.js
in dist
, or a directory mode where pages will compile the worker out of a functions folder in the project root.
For most projects the adaptor default of advanced
will be sufficient; the dist
folder will contain your compiled project. Switching to directory mode allows you to use pages plugins such as Sentry or write custom code to enable logging.
In directory mode the adaptor will compile the client side part of you app the same way, but moves the worker script into a functions
folder in the project root. The adaptor will only ever place a [[path]].js
in that folder, allowing you to add additional plugins and pages middleware which can be checked into version control. Cloudflare documentation contains more information about writing custom functions.
// directory mode
export default defineConfig({
adapter: cloudflare({ mode: "directory" }),
});
In order for preview to work you must install wrangler
$ pnpm install wrangler --save-dev
It's then possible to update the preview script in your package.json
to "preview": "wrangler pages dev ./dist"
. This will allow you run your entire application locally with Wrangler, which supports secrets, environment variables, KV namespaces, Durable Objects and all other supported Cloudflare bindings.
You can access all the Cloudflare bindings and environment variables from Astro components and API routes through the adapter API.
import { getRuntime } from "@astrojs/cloudflare/runtime";
getRuntime(Astro.request);
Depending on your adapter mode (advanced = worker, directory = pages), the runtime object will look a little different due to differences in the Cloudflare API.
See Cloudflare's documentation for working with environment variables.
// pages/[id].json.js
export function get({ params }) {
// Access environment variables per request inside a function
const serverUrl = import.meta.env.SERVER_URL;
const result = await fetch(serverUrl + "/user/" + params.id);
return {
body: await result.text(),
};
}
Cloudflare has support for adding custom headers, configuring static redirects and defining which routes should invoke functions. Cloudflare looks for _headers
, _redirects
, and _routes.json
files in your build output directory to configure these features. This means they should be placed in your Astro project’s public/
directory.
_routes.json
By default, @astrojs/cloudflare
will generate a _routes.json
file that lists all files from your dist/
folder and redirects from the _redirects
file in the exclude
array. This will enable Cloudflare to serve files and process static redirects without a function invocation. Creating a custom _routes.json
will override this automatic optimization and, if not configured manually, cause function invocations that will count against the request limits of your Cloudflare plan.
For help, check out the #support
channel on Discord. Our friendly Support Squad members are here to help!
You can also check our Astro Integration Documentation for more on integrations.
This package is maintained by Astro's Core team. You're welcome to submit an issue or PR!
FAQs
Deploy your site to Cloudflare Workers/Pages
The npm package @astrojs/cloudflare receives a total of 19,955 weekly downloads. As such, @astrojs/cloudflare popularity was classified as popular.
We found that @astrojs/cloudflare demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.