Cretex

Installation

Find cretex on:

NPM JSR DENO jsdelivr


Requirements

Before installing cretex, make sure your environment meets the following requirements:

  • TypeScript 4.5+ (Recommended for type safety and best performance).
  • Enable strict mode in your tsconfig.json (Best practice for TypeScript projects).

TypeScript Configuration

Modify your tsconfig.json to enable strict mode:

tsconfig.json
{
  "compilerOptions": {
    "strict": true
  }
}

Install via Package Managers

To install cretex in your project, use one of the following package managers:

pnpm add cretex

Using a CDN

For quick usage in the browser without installing dependencies, you can include cretex from a CDN:

UMD (Global Script)

<!-- Load the minified version from jsDelivr -->
<script src="https://cdn.jsdelivr.net/npm/cretex@latest/lib/index.min.js"></script>

ESM (Module Import)

<script type="module">
  import cretex from "https://cdn.jsdelivr.net/npm/cretex@latest/+esm";
</script>

Note:

  • The UMD version loads cretex as a global variable.
  • The ESM version allows importing as a module in modern browsers.

Now you are ready to start using Cretex! 🚀