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


TypeScript got.stream函數代碼示例

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


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

示例1:

test.cb('have response event', (t) => {
    got.stream(s.url)
        .on('response', res => {
            t.is(res.statusCode, 200);
            t.end();
        });
});
開發者ID:cyounkins,項目名稱:typed-got,代碼行數:7,代碼來源:stream.ts

示例2: intoStream

test.cb('accepts option.body as Stream', (t) => {
    got.stream(`${s.url}/post`, {body: intoStream(['wow'])})
        .on('data', chunk => {
            t.is(chunk.toString(), 'wow');
            t.end();
        });
});
開發者ID:cyounkins,項目名稱:typed-got,代碼行數:7,代碼來源:stream.ts

示例3: Promise

    await new Promise((resolve, reject) => {
      const downloadStream = got.stream(url);
      downloadStream.pipe(writeStream);

      downloadStream.on('error', error => reject(error));
      writeStream.on('error', error => reject(error));
      writeStream.on('close', () => resolve());
    });
開發者ID:electron-userland,項目名稱:electron-download,代碼行數:8,代碼來源:GotDownloader.ts

示例4: downloadUpdate

export async function downloadUpdate(
  fileName: string,
  logger: LoggerType
): Promise<string> {
  const baseUrl = getUpdatesBase();
  const updateFileUrl = `${baseUrl}/${fileName}`;

  const signatureFileName = getSignatureFileName(fileName);
  const signatureUrl = `${baseUrl}/${signatureFileName}`;

  let tempDir;
  try {
    tempDir = await createTempDir();
    const targetUpdatePath = join(tempDir, fileName);
    const targetSignaturePath = join(tempDir, getSignatureFileName(fileName));

    logger.info(`downloadUpdate: Downloading ${signatureUrl}`);
    const { body } = await get(signatureUrl, getGotOptions());
    await writeFile(targetSignaturePath, body);

    logger.info(`downloadUpdate: Downloading ${updateFileUrl}`);
    const downloadStream = stream(updateFileUrl, getGotOptions());
    const writeStream = createWriteStream(targetUpdatePath);

    await new Promise((resolve, reject) => {
      downloadStream.on('error', error => {
        reject(error);
      });
      downloadStream.on('end', () => {
        resolve();
      });

      writeStream.on('error', error => {
        reject(error);
      });

      downloadStream.pipe(writeStream);
    });

    return targetUpdatePath;
  } catch (error) {
    if (tempDir) {
      await deleteTempDir(tempDir);
    }
    throw error;
  }
}
開發者ID:WhisperSystems,項目名稱:Signal-Desktop,代碼行數:47,代碼來源:common.ts

示例5: stream

export function stream(url: string, headers: any): NodeJS.ReadableStream {
  headers["User-Agent"] = userAgent;
  return got.stream(url, { headers });
}
開發者ID:eggyo,項目名稱:dang-ai,代碼行數:4,代碼來源:http.ts


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