nextcloud-link icon indicating copy to clipboard operation
nextcloud-link copied to clipboard

Javascript/Typescript client that communicates with Nextcloud's WebDAV and OCS APIs

Results 12 nextcloud-link issues
Sort by recently updated
recently updated
newest added

I'm trying to upload a file using `client.uploadFromStream` by doing something like this: ```ts if (exists(currPath) && isFile(currPath)) { const fileStream = createReadStream(currPath) .on('data', (chunk) => { // logging for...

I currently use keycloak as user backend using the OIDC protocol and I am moving the nextcloud instance to this as well. I was wondering if you ever tried to...

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Hi all, I see an error if I use this module. Do you get in touch with this in the past? I use it like this: ```javascript import NextcloudClient from...

It would be nice to add support for PROPPATCH HTTP method to add custom properties to a directory or file. The way to do this is described in that article...

See https://greenkeeper.io/

It would be nice to have exports for helpers mentioned in docs. Right now it's something like that: ```js import nextCloudHelper from 'nextcloud-link/compiled/helper' const { createOwnCloudFileDetailProperty } = nextCloudHelper ```...

In my node project I'm doing the following: ```typescript const rs = fs.createReadStream(path.join(config.uploadPathTemp, folderName)); // Create folder recursively await connector.createRecursiveFolder(path.join(user.target)); // Add files to this folder await connector.uploadFromStream(path.join(user.target), rs); ```...

I have some PDF files on NextCloud. Creating folders, adding files into them works well. But when it's time to retrieve theses files with the `get` method, the `Buffer` string...

Hi tentwentyfour team, I am developing a server which needs to create a folder hierarchy in nextcloud on user demand. I stumbled into the case where losing the connection to...