hyperweb-io / hyperweb-io/create-hyperweb-app

new motd

Offen
#33 3 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Vorherrschende Sprache
TypeScript
Sterne
16
Forks
5
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

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

```ts
// @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);
```

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.