Add basic home page and target ES6

This commit is contained in:
Garrett Mills 2021-03-08 12:35:05 -06:00
parent 906af49d29
commit e1aadc0de5
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246
2 changed files with 13 additions and 3 deletions

View File

@ -1,7 +1,17 @@
import { Controller, Request } from '@extollo/lib';
import {Controller, html, Session} from '@extollo/lib';
import {Inject, Injectable} from "@extollo/di";
@Injectable()
export class Home extends Controller {
@Inject()
protected readonly session!: Session;
public welcome() {
console.log('welcome', this.request)
this.session.set('app_visits', this.session.get('app_visits', 0) + 1)
return html(`
<h1>Welcome to Extollo!</h1>
<h2>You have visited this page ${this.session.get('app_visits')} times.</h2>
`)
}
}

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",