Gathering detailed insights and metrics for fs-codesandboxer
Gathering detailed insights and metrics for fs-codesandboxer
Gathering detailed insights and metrics for fs-codesandboxer
Gathering detailed insights and metrics for fs-codesandboxer
npm install fs-codesandboxer
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2 Stars
12 Commits
1 Watchers
9 Branches
1 Contributors
Updated on Mar 04, 2023
Latest Version
0.4.2
Package Id
fs-codesandboxer@0.4.2
Unpacked Size
5.44 kB
Size
2.53 kB
File Count
5
NPM Version
6.14.4
Node Version
12.18.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
1
Create CodeSandbox from file system.
1npx fs-codesandboxer <source-directory-path>
--ignore-paths
, -i
: Paths to be ignored when uploading. Can be provided multiple times. Note that providing this option will override the default settings.--skip-uploading-binary-files
: Skip uploading binary files, note that providing this option could results in unexpected behavior.Binary files are being uploaded to file.io
to let CodeSandbox to download them. The uploaded links would get expired once requested, or after 14 days (by default). The generated sandboxes are expected to be used/accessed at least once in the range of the expiration time. If for whatever reason you don't want to upload them to file.io
, provide the --skip-uploading-binary-files
option when using this module.
1$ fs-codesandboxer ./examples/react 2CodeSandbox ID : 2qxth (copied to clipboard) 3Editor URL : https://codesandbox.io/s/2qxth 4Preview URL : https://2qxth.csb.app
It can also be used programmatically.
1yarn add fs-codesandboxer
1const fsCodeSandboxer = require('fs-codesandboxer'); 2 3const sandboxID = await fsCodeSandboxer( 4 path.resolve(process.cwd(), './examples/react'), 5 { 6 ignorePaths: [], 7 skipUploadingBinaryFiles: false, 8 } 9); 10 11console.log(sandboxID); // "2qxth"
The official CodeSandbox CLI also has the same functionality as fs-codesandboxer
, but it requires you to sign in to deploy sandboxes. fs-codesandboxer
uses the public API and file.io
to allow you to programmatically deploy sandboxes without authentication.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/12 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
37 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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