Files
huangjingfen/pro_v3.5.1/view/admin/src/libs/start.js
apple 78de918c37 Initial commit: queue workspace
Made-with: Cursor
2026-03-21 02:55:24 +08:00

24 lines
717 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env node
const chalk = require("chalk");
// 打印欢迎信息
console.log(
chalk
.hex("#DEADED")
.underline("😄 Hello ~ 欢迎使用CRMEB Pro版我们将竭诚为您服务")
);
console.log(
chalk.yellow("[提示] 点击这里可以我们的更多产品~ ") +
chalk.blue.underline("https://www.crmeb.com")
);
console.log(
chalk.yellow("[提示] 点击这里可以查看开发文档喔~ ") +
chalk.blue.underline("https://doc.crmeb.com")
);
console.log(
chalk.yellow("[提示] 点击这里可以进入我们的论坛社区~ ") +
chalk.blue.underline("https://www.crmeb.com/ask")
);
console.log(chalk.blue("info - [你知道吗?] 按 Ctrl+C 可以停止服务呢~"));