![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
tspace-nfs
Advanced tools
tspace-nfs is a Network File System (NFS) and provides both server and client capabilities for accessing files over a network.
tspace-nfs is a NFS stands for Network File System and provides both server and client capabilities for accessing files over a network.
Install with npm:
npm install tspace-nfs --save
import { NfsServer } from "tspace-nfs";
new NfsServer()
.onCredentials(async ({ token , secret , bucket }) => {
// The simple example, you can use any database or another to a wrapper check the credentials.
const lists = [
{
token: 'token-dev',
secret: 'secret-dev',
bucket : 'dev'
}
]
return lists.every(list => list.bucket === bucket && list.secret === secret && list.token === token)
})
.progress() // view the progress of the file upload.
.defaultPage(`<b> hello nfs-server! </b>`)
.directory('upload') // by default nfs
.credentials({
expired : 60 * 60 * 24, // 24 hours by default 1 hour
secret : 'credential-secret'
}) // the credentials will auto refresh every expired
fileExpired(60 * 15) // 15 minutes by default 1 hour
.listen(8000 , ({ port }) => console.log(`Server is running on port http://localhost:${port}`))
import { NfsClient } from "tspace-nfs";
const nfs = new NfsClient({
token : '<YOUR TOKEN>', // token
secret : '<YOUR SECRET>', // secret
bucket : '<YOUR BUCKET>', // bucket name
url : '<YOUR URL>' // https://nfs-server.example.com
})
.onError((err, nfs) => {
console.log('nfs client failed to connect')
console.log(err.message)
nfs.quit()
})
.onConnect((nfs) => {
console.log('nfs client connected')
})
(async () => {
const fileDirectory = 'my-cat.png'
const url = await nfs.toURL(fileDirectory , { download : false , expired : 60 * 60 }) // default download true , default expired related by nfs-server
const base64 = await nfs.toBase64(fileDirectory)
const stream = await nfs.toStream(fileDirectory)
const file = files[0] // assume the file from your upload
const { path , size , name } = await nfs.upload({
file : file.tempFilePath,
name : 'my-video.mp4',
folder : 'my-folder'
})
await nfs.uploadBase64({
base64 : Buffer.from(file.tempFilePath).toString('base64'),
name : 'my-video.mp4',
folder : 'my-folder'
})
const deleted = await nfs.delete(fileDirectory)
const folders = await nfs.folders()
const storage = await nfs.storage()
})()
FAQs
tspace-nfs is a Network File System (NFS) and provides both server and client capabilities for accessing files over a network.
The npm package tspace-nfs receives a total of 56 weekly downloads. As such, tspace-nfs popularity was classified as not popular.
We found that tspace-nfs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.