// 全局配置
const __GLOBAL_CONFIG__ = {
name: 'World',
};
// 加载脚本
const url = 'https://cdn.jsdelivr.net/npm/@showlotus/open-scriptable@latest/dist/hello-world.js';
const code = await new Request(url).loadString();
// 执行脚本
const body = `const __GLOBAL_CONFIG__ = ${JSON.stringify(__GLOBAL_CONFIG__)};\n${code}`;
const render = new Function(body);
await render();// 全局配置
const __GLOBAL_CONFIG__ = {
days: {
元旦: '2026-01-01',
春节: '2026-02-17',
清明节: '2026-04-04',
劳动节: '2026-05-01',
端午节: '2026-06-19',
国庆节: '2026-10-01',
中秋节: '2026-10-06',
},
};
const url = 'https://cdn.jsdelivr.net/npm/@showlotus/open-scriptable@latest/dist/count-down.js';
const code = await new Request(url).loadString();
const body = `const __GLOBAL_CONFIG__ = ${JSON.stringify(__GLOBAL_CONFIG__)};\n${code}`;
const render = new Function(body);
await render();# 安装依赖
pnpm install
# 启动开发服务器
pnpm dev在 Scriptable 中加载 http://192.168.5.6:3000/src/hello-world.ts 脚本,即可看到效果。
// 加载脚本
const url = 'http://192.168.5.6:3000/src/hello-world.ts';
const code = await new Request(url).loadString();
// 执行脚本
const render = new Function(code);
await render();


