Skip to content

new motd #33

Description

@pyramation

could be fun while install is happening, and to replace our motd with this:

// @ts-nocheck

import chalk from 'chalk';
import ora from 'ora';
import figlet from 'figlet';

const logo = `
..................................................
..........................-.......................
.......................-===-......................
....................-======-......-...............
.................-=========-...-===-..............
...............============-..-====-..............
..............-=====-.-====-..-====-..............
..............-====-..-====-..-====-..............
..............-====-..-==-....-====-..............
..............-====-..........-====-..............
..............-====-....-==-..-====-..............
..............-====-..-====-..-====-..............
..............-====-..-====-.-=====-..............
..............-====-..-============...............
..............-===-...-=========-.................
...............-......-======-....................
......................-===-.......................
.......................-..........................
..................................................
`;

const spinner = ora({
  text: chalk.gray('Spinning up your future...'),
  spinner: 'bouncingBall',
}).start();

setTimeout(() => {
  spinner.succeed(chalk.green('Welcome to Hyperweb 🕸️'));
  
  console.log(
    chalk.cyanBright.bold(
      figlet.textSync('Hyperweb', { font: 'Standard', horizontalLayout: 'default' })
    )
  );

  console.log(chalk.cyanBright.bold(logo));
  console.log(
    chalk.bold.white('\n🚀 Let’s build something legendary.')
  );
  console.log(chalk.gray('Type ') + chalk.yellow('npm run dev') + chalk.gray(' to get started.\n'));
}, 1800);

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions