Gathering detailed insights and metrics for tempy
Gathering detailed insights and metrics for tempy
npm install tempy
Typescript
Module System
Min. Node Version
Node Version
NPM Version
99.2
Supply Chain
99.5
Quality
75.8
Maintenance
100
Vulnerability
99.6
License
JavaScript (79.69%)
TypeScript (20.31%)
Total Downloads
1,355,471,084
Last Day
1,777,604
Last Week
8,138,993
Last Month
37,697,750
Last Year
516,299,609
425 Stars
47 Commits
25 Forks
7 Watching
1 Branches
8 Contributors
Latest Version
3.1.0
Package Id
tempy@3.1.0
Unpacked Size
12.22 kB
Size
3.38 kB
File Count
5
NPM Version
9.2.0
Node Version
16.20.0
Publised On
10 Jul 2023
Cumulative downloads
Total Downloads
Last day
-11.3%
1,777,604
Compared to previous day
Last week
-19.9%
8,138,993
Compared to previous week
Last month
6%
37,697,750
Compared to previous month
Last year
32.4%
516,299,609
Compared to previous year
4
6
Get a random temporary file or directory path
1npm install tempy
1import {temporaryFile, temporaryDirectory} from 'tempy'; 2 3temporaryFile(); 4//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/4f504b9edb5ba0e89451617bf9f971dd' 5 6temporaryFile({extension: 'png'}); 7//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/a9fb0decd08179eb6cf4691568aa2018.png' 8 9temporaryFile({name: 'unicorn.png'}); 10//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/f7f62bfd4e2a05f1589947647ed3f9ec/unicorn.png' 11 12temporaryDirectory(); 13//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/2f3d094aec2cb1b93bb0f4cffce5ebd6' 14 15temporaryDirectory({prefix: 'name'}); 16//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/name_3c085674ad31223b9653c88f725d6b41'
Get a temporary file path you can write to.
The callback
resolves with a temporary file path you can write to. The file is automatically cleaned up after the callback is executed. Returns a promise that resolves with the return value of the callback after it is executed and the file is cleaned up.
Type: (tempPath: string) => void
A callback that is executed with the temp file path. Can be asynchronous.
Type: object
You usually won't need either the extension
or name
option. Specify them only when actually needed.
Type: string
File extension.
Type: string
Filename. Mutually exclusive with the extension
option.
Get a temporary directory path. The directory is created for you.
The callback
resolves with a temporary directory path you can write to. The directory is automatically cleaned up after the callback is executed. Returns a promise that resolves with the return value of the callback after it is executed and the directory is cleaned up.
Type: (tempPath: string) => void
A callback that is executed with the temp directory path. Can be asynchronous.
Type: Object
Type: string
Directory prefix.
Useful for testing by making it easier to identify cache directories that are created.
You usually won't need this option. Specify it only when actually needed.
Write data to a random temp file.
Write data to a random temp file. The file is automatically cleaned up after the callback is executed. Returns a promise that resolves with the return value of the callback after it is executed and the file is cleaned up.
Type: string | Buffer | TypedArray | DataView | stream.Readable
Data to write to the temp file.
Type: (tempPath: string) => void
A callback that is executed with the temp file path. Can be asynchronous.
See options.
Synchronously write data to a random temp file.
Type: string | Buffer | TypedArray | DataView
Data to write to the temp file.
See options.
Get the root temporary directory path. For example: /private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T
No vulnerabilities found.
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 9/30 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-20
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More