expo-share-content
No description available.
expo-share-content Latest Version Download
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
mimeType
View Details ▼
mimeType
Automatically determine the MIME type of a file.
mimetype {{path/to/file}}
Print the MIME type of a given file:
mimetype --brief {{path/to/file}}
Display only the MIME type, and not the filename:
mimetype --describe {{path/to/file}}
Display a description of the MIME type:
size
View Details ▼
size
Display the sizes of sections inside binary files.
size {{path/to/file}}
Display the size of sections in a given object or executable file:
size {{[-o|--radix=8]}} {{path/to/file}}
Display the size of sections in a given object or executable file in [o]ctal:
size {{[-d|--radix=10]}} {{path/to/file}}
Display the size of sections in a given object or executable file in [d]ecimal:
Share
View Details ▼
Share
Make local resource/filesystem available for mounting by remote systems.
share
List all currently shared filesystems:
share -F nfs -o rw /{{path/to/directory}}
Share a directory with read/write access:
share -F nfs -o ro /{{path/to/directory}}
Share a directory with read-only access:
