本文整理汇总了TypeScript中node-static.version.join方法的典型用法代码示例。如果您正苦于以下问题:TypeScript version.join方法的具体用法?TypeScript version.join怎么用?TypeScript version.join使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类node-static.version
的用法示例。
在下文中一共展示了version.join方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Server
import { Server, version, mime } from 'node-static';
let server = new Server(__dirname);
let pathname = server.resolve('./tsconfig.json');
let mimetype = mime.lookup(pathname, '');
let versionNum = version.join('.');
console.log(`The node-static server constructed an instance of itself, fetched the mimetype of ${pathname} (${mimetype}), and has a version of ${versionNum}! The package is working.`);
示例2: Server
import { Server, version, mime } from 'node-static';
const server = new Server(__dirname);
const pathname = server.resolve('./tsconfig.json');
const mimetype = mime.getType(pathname);
const versionNum = version.join('.');
console.log(`The node-static server constructed an instance of itself, fetched the mimetype of ${pathname} (${mimetype}), and has a version of ${versionNum}! The package is working.`);