Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

View dicka88's full-sized avatar
🐧
So fun

Dicka Ismaji dicka88

🐧
So fun
View GitHub Profile

Conventional Commit Messages

See how a minor change to your commit message style can make a difference. Examples

Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs

Commit Formats

Default

Hello

// >>> >> / // / > >

//// >> >> > // / /

// >>>>>> > >>> >> >

/ // / / /// //////>> > > > >

@dicka88
dicka88 / abc.js
Created May 16, 2020 04:02
ABC framework for deno js
import { Application } from "https://deno.land/x/abc/mod.ts";
const app = new Application();
app
.get("/hello", (c) => {
return "Hello, Abc!";
})
.start({ port: 8080 });
console.log("ABC run on localhost:8080");