Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.43 KB

README.md

File metadata and controls

43 lines (35 loc) · 1.43 KB

Chomp

Library of (arguably) useful stuff.
Should work just fine but comes with no warranties whatsoever.

Usage

Chomp is structured in such a way that you can import just what you need for your app.
A good start would be to import the most common things you might use:

import * from "https://deno.land/x/chomp/mod.ts";

This includes (list might not always be up-to-date):

You can then import any of the "extras" as you need:

import * from "https://deno.land/x/chomp/discord/mod.ts";
import * from "https://deno.land/x/chomp/webserver/mod.ts";
import * from "https://deno.land/x/chomp/websocket/mod.ts";

Additionally, you can explore the docs or Deno.land to see what more Chomp is capable off!

Versioning

Versions adhere to the following versioning system of x.y.z where:

  • x means a breaking change (eg. removal of a function, breaking upgrade of an upstream dependency etc.).
  • y means an addition or non-breaking update.
  • z means a typos, bug-fix etc.