Skip to main content
Module

x/mandarinets/main-core/mandarineLoading.ts

Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.
Latest
File
// Copyright 2020-2020 The Mandarine.TS Framework authors. All rights reserved. MIT license.
import { rgb8 } from "https://deno.land/std@0.84.0/fmt/colors.ts";import { Log } from "../logger/log.ts";import { MandarineConstants } from "./mandarineConstants.ts";
/** * Loads the visualization of Mandarine's Compiler */export const MandarineLoading = () => { console.log(` __ __ _ _ _______ _____ `); console.log(` | \\/ | | | (_) |__ __/ ____|`); console.log(` | \\ / | __ _ _ __ __| | __ _ _ __ _ _ __ ___ | | | (___ `); console.log(" | |\\/| |/ _` | '_ \\ / _` |/ _` | '__| | '_ \\ / _ \\ | | \\___ \\ "); console.log(" | | | | (_| | | | | (_| | (_| | | | | | | | __/ | | ____) |"); console.log(" |_| |_|\\__,_|_| |_|\\__,_|\\__,_|_| |_|_| |_|\\___| |_| |_____/ "); console.log(" "); console.log(" ================================================================= "); console.log(` ${rgb8("Mandarine.TS Framework", 208)} :: ${MandarineConstants.RELEASE_VERSION}`); console.log(""); Log.getLogger("MandarineCore").info(`Starting framework with PID ${Deno.pid}`); };