koa-svelte

Koa Svelte

A simple template with Koa as backend and Svelte as frontend

koa-svelte

koa-svelte is a template using Koa as backend and Svelte as frontend.

Getting started

Using a degit tool, you can install this template as:

npx degit Olyno/koa-svelte my-app

What contain this template

What could be added

  • Typescript support

    1. Install typescript dependecies: npm i -D typescript @types/koa @types/koa-static @types/koa-send ts-node
    2. Remove unused babel dependencies: npm uninstall -D @babel/core @babel/node @babel/preset-env
    3. Change the server/index.js file to server/index.ts and make it compatible with typescript: ```diff
    • import koa from 'koa';
    • import send from 'koa-send';
    • import serve from 'koa-static';
    • import * as koa from 'koa';
    • import * as send from 'koa-send';
    • import * as serve from 'koa-static';

    const PORT = 3000;

    const app = new koa();

    // Serve static assets app.use(serve('public'));

    // Serve index.html file app.use(async (ctx, next) => { await send(ctx, 'index.html', { root: 'public' }); return next(); })

    app.listen(PORT, () => console.log('> Server listening at http://localhost:' + PORT))

    ``` 4) Replace babel-node to ts-node inside the start script in your package.json file 5) Remove unused .babelrc file

  • Security

    1. Install security dependencies: npm i koa-helmet koa-protect @koa/cors
    2. Add them into the server/index.js file: ```diff import koa from 'koa'; import send from 'koa-send'; import serve from 'koa-static';
    • import protect from 'koa-protect';
    • import helmet from 'koa-helmet';
    • import cors from '@koa/cors';

    const PORT = 3000;

    const app = new koa();

    • app.use(helmet());
    • app.use(cors());
    • app.use(protect.koa.sqlInjection({ body: true, loggerFunction: console.error }))
    • app.use(protect.koa.xss({ body: true, loggerFunction: console.error }))

    // Serve static assets app.use(serve('public'));

    // Serve index.html file app.use(async (ctx, next) => { await send(ctx, 'index.html', { root: 'public' }); return next(); })

    app.listen(PORT, () => console.log('> Server listening at http://localhost:' + PORT)) ```

Top categories

svelte logo

Want a Svelte site built?

Hire a Svelte developer
Loading Svelte Themes