cors

package module
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 20, 2023 License: MIT Imports: 7 Imported by: 1

README

cors

GitHub Workflow Status Codecov GoDoc Sourcegraph

Package cors is a middleware that provides the Cross-Origin Resource Sharing for Flamego.

Installation

The minimum requirement of Go is 1.18.

go get github.com/flamego/cors

Getting started

package main

import (
	"github.com/flamego/cors"
	"github.com/flamego/flamego"
)

func main() {
	f := flamego.Classic()
	f.Use(cors.CORS())
	f.Get("/", func(c flamego.Context) string {
		return "ok"
	})
	f.Run()
}

Getting help

License

This project is under the MIT License. See the LICENSE file for the full license text.

Documentation

Overview

Package cors is a middleware that generates CORS headers for Flamego.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CORS

func CORS(options ...Options) flamego.Handler

CORS returns a middleware handler that responds to preflight requests with adequate "Access-Control-*" response headers.

Types

type Options

type Options struct {
	// Scheme may be http or https as accepted schemes or the "*" wildcard to accept
	// any scheme. Default is "http".
	Scheme string
	// AllowDomain is a comma separated list of domains that are allowed to initiate
	// CORS requests. Special value is a single "*" wildcard that will allow any
	// domain to send requests without credentials and the special "!*" wildcard
	// which will reply with requesting domain in the "access-control-allow-origin"
	// header and hence allow requests from any domain *with* credentials. Default
	// is "*".
	AllowDomain []string
	// AllowSubdomain allowed subdomains of domains to run CORS requests. Default is
	// false.
	AllowSubdomain bool
	// Methods may be a comma separated list of HTTP-methods to be accepted. Default
	// is ["GET", "POST", "OPTIONS"].
	Methods []string
	// MaxAgeSeconds may be the duration in secs for which the response is cached.
	// Default is 600 * time.Second.
	MaxAge time.Duration
	// AllowCredentials set to false rejects any request with credentials. Default
	// is false.
	AllowCredentials bool
}

Options contains options for the cors.CORS middleware.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL