本文整理汇总了TypeScript中cuid类的典型用法代码示例。如果您正苦于以下问题:TypeScript cuid类的具体用法?TypeScript cuid怎么用?TypeScript cuid使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了cuid类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: returnScreenshot
// Returns the S3 url or local file path
async returnScreenshot(): Promise<string> {
const data = await screenshot(this.client)
// check if S3 configured
if (process.env['CHROMELESS_S3_BUCKET_NAME'] && process.env['CHROMELESS_S3_BUCKET_URL']) {
const s3Path = `${cuid()}.png`
const s3 = new AWS.S3()
await s3.putObject({
Bucket: process.env['CHROMELESS_S3_BUCKET_NAME'],
Key: s3Path,
ContentType: 'image/png',
ACL: 'public-read',
Body: new Buffer(data, 'base64'),
}).promise()
return `https://${process.env['CHROMELESS_S3_BUCKET_URL']}/${s3Path}`
}
// write to `/tmp` instead
else {
const filePath = `/tmp/${cuid()}.png`
fs.writeFileSync(filePath, Buffer.from(data, 'base64'))
return filePath
}
}
示例2: returnPdf
// Returns the S3 url or local file path
async returnPdf(options?: PdfOptions): Promise<string> {
const data = await pdf(this.client, options)
// check if S3 configured
if (
process.env['CHROMELESS_S3_BUCKET_NAME'] &&
process.env['CHROMELESS_S3_BUCKET_URL']
) {
const s3Path = `${cuid()}.pdf`
const s3 = new AWS.S3()
await s3
.putObject({
Bucket: process.env['CHROMELESS_S3_BUCKET_NAME'],
Key: s3Path,
ContentType: 'application/pdf',
ACL: 'public-read',
Body: new Buffer(data, 'base64'),
})
.promise()
return `https://${process.env['CHROMELESS_S3_BUCKET_URL']}/${s3Path}`
} else {
// write to `${os.tmpdir()}` instead
const filePath = path.join(os.tmpdir(), `${cuid()}.pdf`)
fs.writeFileSync(filePath, Buffer.from(data, 'base64'))
return filePath
}
}
示例3: async
export default async (event, context, callback): Promise<void> => {
const url = createPresignedURL()
const channelId = cuid()
callback(null, {
statusCode: 200,
body: JSON.stringify({ url, channelId }),
})
}
示例4: writeToFile
export function writeToFile(
data: string,
extension: string,
filePathOverride: string,
): string {
const filePath =
filePathOverride || path.join(os.tmpdir(), `${cuid()}.${extension}`)
fs.writeFileSync(filePath, Buffer.from(data, 'base64'))
return filePath
}
示例5: uploadToS3
export async function uploadToS3(data: string, contentType: string): Promise<string> {
const s3ContentType = s3ContentTypes[contentType]
if (!s3ContentType) {
throw new Error(`Unknown S3 Content type ${contentType}`)
}
const s3Path = `${getS3ObjectKeyPrefix()}${cuid()}.${s3ContentType.extension}`
const s3 = new AWS.S3()
await s3
.putObject({
Bucket: getS3BucketName(),
Key: s3Path,
ContentType: contentType,
ACL: 'public-read',
Body: Buffer.from(data, 'base64'),
})
.promise()
return `https://${getS3BucketUrl()}/${s3Path}`
}
示例6:
const getPingUrl = (region: string) => `${getDynamoUrl(region)}/ping?x=${cuid()}`