當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript async-file.readFile函數代碼示例

本文整理匯總了TypeScript中async-file.readFile函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript readFile函數的具體用法?TypeScript readFile怎麽用?TypeScript readFile使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了readFile函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: suiteSetup

    suiteSetup(async () => {
        let port = await getPort();
        server = new ServerMock(null,
            {
                host: "localhost",
                port: port,
                key: await fs.readFile("test/unitTests/testAssets/private.pem"),
                cert: await fs.readFile("test/unitTests/testAssets/public.pem")
            });

        httpsServerUrl = `https://127.0.0.1:${port}`;
    });
開發者ID:peterblazejewicz,項目名稱:omnisharp-vscode,代碼行數:12,代碼來源:FileDownloader.test.ts

示例2: CreateMockHttpsServer

 public static async CreateMockHttpsServer(): Promise<MockHttpsServer> {
     let port = await getPort();
     let server = new ServerMock(null,
         {
             host: "localhost",
             port: port,
             key: await fs.readFile("test/unitTests/testAssets/private.pem"),
             cert: await fs.readFile("test/unitTests/testAssets/public.pem")
         });
 
     return new MockHttpsServer(server, `https://localhost:${port}`);
 }
開發者ID:gregg-miskelly,項目名稱:omnisharp-vscode,代碼行數:12,代碼來源:MockHttpsServer.ts

示例3: test

 test('File is downloaded', async () => {
     await DownloadFile(tmpFile.fd, fileDescription, eventStream, networkSettingsProvider, getURL(elem.urlPath), getURL(elem.fallBackUrlPath));
     const stats = await fs.stat(tmpFile.name);
     expect(stats.size).to.not.equal(0);
     let text = await fs.readFile(tmpFile.name, 'utf8');
     expect(text).to.be.equal("Test content");
 });
開發者ID:peterblazejewicz,項目名稱:omnisharp-vscode,代碼行數:7,代碼來源:FileDownloader.test.ts

示例4: async

 async (err: Error|null, output?: string) => {
     if (err) {
         throw err;
     }
     const generatedHeader = await fs.readFile(`${__dirname}/templates/generated-sources.js.tmpl`);
     await fs.writeFile(`${__dirname}/../project/schema.d.ts`, generatedHeader + output);
     resolve();
 },
開發者ID:imdreamrunner,項目名稱:protobuf-websocket-api,代碼行數:8,代碼來源:load-schema.ts

示例5: loadSchema

export async function loadSchema() {

    const projectDefinition = JSON.parse(await fs.readFile(`${PROJECT_CWD}/package.json`));
    const protoDir = projectDefinition["apiSchema"];

    shelljs.mkdir("-p", `${__dirname}/../project`);

    await generateSchemaJS(protoDir);
    await gtenerateDefinition();
}
開發者ID:imdreamrunner,項目名稱:protobuf-websocket-api,代碼行數:10,代碼來源:load-schema.ts

示例6: doWork

async function doWork(): Promise<void> {
    const balancesFileContents = await fs.readFile(argv.balances, 'utf8');
    const allowanceOwnersFileContents = await fs.readFile(argv.allowanceOwners, 'utf8');
    const allowanceSpendersFileContents = await fs.readFile(argv.allowanceSpenders, 'utf8');

    const balances = balancesFileContents.split('\n');
    const allowanceOwners = allowanceOwnersFileContents.split('\n');
    const allowanceSpenders = allowanceSpendersFileContents.split('\n');

    const legacyRepData = {
        balances,
        allowanceOwners,
        allowanceSpenders,
    }

    const repContractAddress = argv.repAddress;
    const chunkSize = argv.chunkSize;

    const legacyRepMigrator: LegacyRepMigrator = await LegacyRepMigrator.create(legacyRepData, repContractAddress, chunkSize);
    await legacyRepMigrator.migrateLegacyRep();
}
開發者ID:AugurProject,項目名稱:augur-core,代碼行數:21,代碼來源:migrateRep.ts

示例7: compileContracts

    public async compileContracts(): Promise<CompilerOutput> {
        // Check if all contracts are cached (and thus do not need to be compiled)
        try {
            const stats = await fs.stat(this.configuration.contractOutputPath);
            const lastCompiledTimestamp = stats.mtime;
            const ignoreCachedFile = function(file: string, stats: fs.Stats): boolean {
                return (stats.isFile() && path.extname(file) !== ".sol") || (stats.isFile() && path.extname(file) === ".sol" && stats.mtime < lastCompiledTimestamp);
            }
            const uncachedFiles = await recursiveReadDir(this.configuration.contractSourceRoot, [ignoreCachedFile]);
            if (uncachedFiles.length === 0) {
                return JSON.parse(await fs.readFile(this.configuration.contractOutputPath, "utf8"));
            }
        } catch {
            // Unable to read compiled contracts output file (likely because it has not been generated)
        }

        console.log('Compiling contracts, this may take a minute...');

        // Compile all contracts in the specified input directory
        const compilerInputJson = await this.generateCompilerInput();
        const compilerOutputJson = compileStandardWrapper(JSON.stringify(compilerInputJson));
        const compilerOutput: CompilerOutput = JSON.parse(compilerOutputJson);
        if (compilerOutput.errors) {
            let errors = "";

            for (let error of compilerOutput.errors) {
                // FIXME: https://github.com/ethereum/solidity/issues/3273
                if (error.message.includes("instruction is only available after the Metropolis hard fork")) continue;
                errors += error.formattedMessage + "\n";
            }

            if (errors.length > 0) {
                throw new Error("The following errors/warnings were returned by solc:\n\n" + errors);
            }
        }

        // Create output directory (if it doesn't exist)
        await asyncMkdirp(path.dirname(this.configuration.contractOutputPath));

        // Output contract data to single file
        const filteredCompilerOutput = this.filterCompilerOutput(compilerOutput);
        await fs.writeFile(this.configuration.contractOutputPath, JSON.stringify(filteredCompilerOutput, null, '\t'));

        // Output abi data to a single file
        const abiOutput = this.generateAbiOutput(filteredCompilerOutput);
        await fs.writeFile(this.configuration.abiOutputPath, JSON.stringify(abiOutput, null, '\t'));

        return filteredCompilerOutput;
    }
開發者ID:Arbitrage0,項目名稱:augur-core,代碼行數:49,代碼來源:ContractCompiler.ts

示例8: generateServices

export async function generateServices() {
    const projectDefinition = JSON.parse(await fs.readFile(`${PROJECT_CWD}/package.json`));
    const apiSourceDir = projectDefinition["apiSource"] || "src/api";

    const files = await fs.readdir(`${PROJECT_CWD}/${apiSourceDir}`);

    const moduleList: Module[] = [];

    for (const filename of files) {
        if (filename.indexOf(".js") < 0 && filename.indexOf(".ts") < 0) {
            console.warn(`File ${filename} is not a JavaScript / TypeScript file.`);
        }
        const isTypeScript = filename.indexOf(".ts") >= 0;
        const moduleName = filename.substring(0, filename.lastIndexOf("."));

        const apiList: ApiEndpoint[] = [];

        let fileContent = await fs.readTextFile(`${PROJECT_CWD}/${apiSourceDir}/${filename}`, "utf8");
        if (isTypeScript) {
            fileContent = ts.transpile(fileContent, {
                removeComments: false
            });
        }

        const ast = esprima.parse(fileContent, {
            tolerant: true,
            comment: true
        });
        const comments = ast.comments;
        const blockComments = comments.filter((c: any) => c.type == "Block").map((c: any) => c.value);

        let packageName: string;

        blockComments.forEach((comment: string) => {
            let endpointName: string;
            let requestType: string;
            let responseType: string;
            comment.split("\n").forEach(line => {
                if (line.indexOf(PACKAGE_NAME_NOTE) >= 0) {
                    packageName = extractAttribute(line, PACKAGE_NAME_NOTE);
                    console.log(`[PWA] Generated service ${packageName}.`);
                } else if (line.indexOf(ENDPOINT_NAME_NOTE) >= 0) {
                    endpointName = extractAttribute(line, ENDPOINT_NAME_NOTE);
                } else if (line.indexOf(REQUEST_NOTE) >= 0) {
                    requestType = extractAttribute(line, REQUEST_NOTE);
                } else if (line.indexOf(RESPONSE_NOTE) >= 0) {
                    responseType = extractAttribute(line, RESPONSE_NOTE);
                }
            });
            if (endpointName && requestType && responseType) {
                const requestTypeInterface = getInterfaceNameFromType(requestType);
                const responseTypeInterface = getInterfaceNameFromType(responseType);
                const endpoint = {moduleName, endpointName, requestType, responseType, requestTypeInterface, responseTypeInterface};
                apiList.push(endpoint);

            }
        });

        moduleList.push({
            sourceFileName: filename,
            packageName,
            moduleName,
            apiList,
        });
    }

    for (const module of moduleList) {
        const {sourceFileName, packageName, moduleName, apiList} = module;
        const proto = await generateProto(sourceFileName, packageName, moduleName, apiList);

        const projectDefinition = JSON.parse(await fs.readFile(`${PROJECT_CWD}/package.json`));
        const protoDir = projectDefinition["apiSchema"];
        shelljs.mkdir("-p", `${protoDir}/services`);
        await fs.writeFile(`${protoDir}/services/${moduleName}.proto`, proto);
    }

}
開發者ID:imdreamrunner,項目名稱:protobuf-websocket-api,代碼行數:77,代碼來源:generate-services.ts


注:本文中的async-file.readFile函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。