Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@thgaskell
thgaskell / main.ts
Created March 27, 2020 00:18
Hello, Deno!
import { parse } from "https://deno.land/std/flags/mod.ts";
function greet(name?: string): void {
if (!name) {
console.log('Hello, World!');
} else {
console.log(`Hello, ${name}!`);
}
}
@thgaskell
thgaskell / README.md
Last active January 18, 2022 10:30
Sequelize + Express Starter Guide