Socket
Socket
Sign inDemoInstall

@sveltejs/adapter-auto

Package Overview
Dependencies
3
Maintainers
4
Versions
108
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sveltejs/adapter-auto


Version published
Maintainers
4
Created

Package description

What is @sveltejs/adapter-auto?

@sveltejs/adapter-auto is a SvelteKit adapter that automatically selects the appropriate adapter for your deployment target. It simplifies the deployment process by detecting the environment and configuring the build accordingly.

What are @sveltejs/adapter-auto's main functionalities?

Automatic Adapter Selection

This feature allows the SvelteKit project to automatically select the appropriate adapter based on the deployment environment. The code sample shows how to configure the SvelteKit project to use the @sveltejs/adapter-auto package.

import adapter from '@sveltejs/adapter-auto';

export default {
  kit: {
    adapter: adapter()
  }
};

Simplified Configuration

This feature simplifies the configuration process by reducing the need for manual adapter selection. The code sample demonstrates how to set up the SvelteKit project with minimal configuration.

import adapter from '@sveltejs/adapter-auto';

export default {
  kit: {
    adapter: adapter(),
    target: '#svelte'
  }
};

Other packages similar to @sveltejs/adapter-auto

Readme

Source

adapter-auto

Automatically chooses the adapter for your current environment, if possible.

Supported environments

The following environments are supported out-of-the-box, meaning a newly created project can be deployed on one of these platforms without any additional configuration:

  • Cloudflare Pages via adapter-cloudflare
  • Netlify via adapter-netlify
  • Vercel via adapter-vercel

Community adapters

Support for additional environments can be added in adapters.js. To avoid this package ballooning in size, community-supported adapters should not be added as dependencies — adapter-auto will instead prompt users to install missing packages as needed.

Changelog

The Changelog for this package is available on GitHub.

FAQs

Last updated on 24 Feb 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc