hyperweb-io / hyperweb-io/create-hyperweb-app
new motd
- 主要语言
- TypeScript
- 星标
- 16
- 派生
- 5
- PR 合并指标
- 30 天内没有已合并 PR
描述
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);
```
贡献指南
这个仓库没有索引到贡献指南
调研方向
未指定文件或测试;首先在 repository 中定位当前的 MOTD 和安装入口点。将现有安装流程与提供的 TypeScript 代码片段进行比较,并验证新的欢迎输出会在安装期间出现且不会影响完成。完成的标准是替换 MOTD,并显示文档中说明的 npm run dev 提示。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- typescript
- 领域
- cli
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100