# react-native-web-webview

> React Native for Web implementation of RN's WebView

Latest version **1.0.2** (published 2020-08-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-web-webview
pnpm add react-native-web-webview
yarn add react-native-web-webview
bun add react-native-web-webview
```

## 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.0.2 |
| Published | 2020-08-01 |
| First published | 2017-10-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 123.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 134 |
| Author | Louis Lagrange |
| Maintainers | minishlink |
| Keywords | react-native, react-native-web, WebView |

## Links

- npm: https://www.npmjs.com/package/react-native-web-webview
- Repository: git@github.com:react-native-web-community/react-native-web-webview
- npm.io page: https://npm.io/package/react-native-web-webview

## Dependencies (1)

- [qs](https://npm.io/package/qs.md) ^6.5.1

## Recent versions

- 1.0.2 (latest) — 2020-08-01
- 1.0.1 — 2020-04-28
- 0.2.9 — 2020-04-28
- 0.2.8 — 2018-11-11
- 0.2.7 — 2018-09-16
- 0.2.6 — 2018-08-01
- 0.2.5 — 2017-12-10
- 0.2.4 — 2017-11-22
- 0.2.3 — 2017-11-13
- 0.2.2 — 2017-11-05
- 0.2.1 — 2017-10-19
- 0.2.0 — 2017-10-15
- 0.1.0 — 2017-10-15
- 0.0.1 — 2017-10-01

## README

# react-native-web-webview

> React Native for Web implementation of RN's WebView

## Getting started

`$ npm install react-native-web-webview --save`

Alias the package in your webpack config:

```
resolve: {
    alias: {
        'react-native': 'react-native-web',
        ...
        'react-native-webview': 'react-native-web-webview',
    }
}
```

Add the following rule to your webpack config:

```js
const rule = {
  test: /postMock.html$/,
  use: {
    loader: 'file-loader',
    options: {
      name: '[name].[ext]',
    },
  },
};
```

## Usage

```js
import { WebView } from 'react-native-webview';
```

See [RN's doc](https://github.com/react-native-community/react-native-webview).

Supported props are:

- `source`
- `onMessage`
- `scrollEnabled`
- `injectedJavaScript`
- `style`

Additional, web-specific props are:

- `newWindow`: (_boolean_|_{ name: string, features: string}_)
  This will open the source in a new window, optionally giving it an [internal name and custom features](https://developer.mozilla.org/en-US/docs/Web/API/Window/open).
  By default, the name is `webview` and there are no features set.
  This is useful when your target has X-Frame-Options or a no-CORS policy.
  It currently only supports a `source` prop with a `method` set to `POST`.
  Please feel free to do a PR to support more request types!
- `title`: (_string_) This prop will set the `webview` title.

## Examples

See the [storybook](https://react-native-web-community.github.io/react-native-web-webview/storybook).

## Contributing

PRs are welcome!

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