Coder Social home page Coder Social logo

spa-server's Introduction

SPA Server

Simplest server for single page applications.

What does it do?

Serve static files with a simple rule:

  • Is it a root request (e.g.: / or /requests)? -> Return /index.html
  • Is it a directory? -> return index.html
  • File doesn't exist? -> Return index.html
  • Otherwise, serve file

How do I use it?

Create a Dockerfile with the following content:

FROM scratch

RUN mkdir -p /opt/app

# Copy spa-server
COPY spa-server /opt/app/spa-server
# Copy your SPA content
COPY dist /opt/app

# Start server
WORKDIR /opt/app
ENTRYPOINT ["/spa-server"]

Then download the latest version and build your Docker image:

$ curl -L 'https://github.com/VinnieApps/spa-server/releases/latest/download/spa-server_linux_amd64' > spa-server
$ chmod +x spa-server
$ docker build -t my-image .

Or do it all from inside Docker using multistate Dockerfiles:

FROM ubuntu AS downloader
RUN apt-get update && apt-get install -y curl

RUN mkdir -p /tmp/build/opt/app

RUN curl -L 'https://github.com/VinnieApps/spa-server/releases/latest/download/spa-server_linux_amd64' > /tmp/build/opt/app/spa-server
RUN chmod +x /tmp/build/opt/app/spa-server

FROM scratch

COPY --from=downloader /tmp/build /
COPY dist /opt/app

WORKDIR /opt/app
ENTRYPOINT ["./spa-server"]

spa-server's People

Contributors

visola avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.