# smbopenr

> Provide a readable fd for an smb path.

Latest version **1.1.0** (published 2016-11-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install smbopenr
pnpm add smbopenr
yarn add smbopenr
bun add smbopenr
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-11-01 |
| First published | 2016-10-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| Author | Stefan Buller |
| Maintainers | hikingpete |

## Links

- npm: https://www.npmjs.com/package/smbopenr
- npm.io page: https://npm.io/package/smbopenr

## Dependencies (1)

- [tmp](https://npm.io/package/tmp.md) 0.0.29

## Recent versions

- 1.1.0 (latest) — 2016-11-01
- 1.0.1 — 2016-10-28
- 1.0.0 — 2016-10-28

## README

# node-smbopenr
Provide an fd for a given smb path

A path should be provided in the form '//server/share/…'. No provision is made
for anything other than guest access. Win32 systems will open the path directly,
unix platforms need smbget installed which will be used to copy the remote file
into a local tmp file.

```js
const smbopenr = require('smbopenr')
smbopenr('//server/share/path', (err, fd)=>{
	// Do all your favourite fd things here.
	// Unless you want to do something other than read.
	// This is only for reading.
})

---
_Source: https://npm.io/package/smbopenr · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
