alexstaeding / ktor-spa

A Feature to handle single page applications for Ktor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ktor Single Page Application Feature Build Status Download

Installable feature to handle SPAs easily in Ktor!

Written in Kotlin with ❤️

Usage

Just install the feature in your application with:

install(SinglePageApplication)

By default the app is served from the root folder of bundled resources with index.html as main page. You can customize stuff like so:

install(SinglePageApplication){

    // main page file name to be served
    defaultPage = "myPage.html"
    
    // folder in which look for you spa files, either
    // inside bundled resources or current working directory
    folderPath = "not/root/folder/"
    
    // The url at which tour spa should be served. This
    // is usefull if you want to serve a spa not at the
    // root of your website
    spaRoute = "/something"
    
    // uses files in the current working directory instead
    // of resources
    useFiles = true
    
    // ignores a url if contains this regex 
    ignoreIfContains = Regex(...)
    
}

All the routes you set up in your Ktor application have higher priority and will shadow eventual SPA routes so keep that in mind.

Under the hood

The feature intercepts all 404s not intercepted by the router and instead of responding an HTTP 404 it serves the index.html (or whatever you called it) with HTTP 200 status.

NB: Remember to setup a 404 in your spa!

Install Download

If using Gradle Kotlin DSL:

repositories {
    jcenter()
}
...
dependencies {
    implementation("com.github.lamba92", "ktor-spa", "{latest_version}")
}

About

A Feature to handle single page applications for Ktor

License:Apache License 2.0


Languages

Language:Kotlin 97.0%Language:HTML 3.0%