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

new motd

Open
#33 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
16
Forks
5
PR merge metrics
No merged PRs in 30d

Description

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);
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.