🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@seesaw/react-native-svg-web

Package Overview
Dependencies
Maintainers
4
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seesaw/react-native-svg-web

A web replacement for react-native-svg

latest
npmnpm
Version
1.0.3
Version published
Maintainers
4
Created
Source

react-native-svg-web

npm version downloads

This package can be used as a drop-in replacement for react-native-svg when targeting the web, or as a mock for jest when testing react-native applications.

Targeting the Web

Add the following to your webpack configuration:

module.exports = {
  ..., /* the existing configuration */

  resolve: {
    alias: {
      'react-native-svg': 'react-native-svg-web'
    }
  }
};

Mocking with Jest

Add the following to your package.json.

{
  "jest": {
    "setupFiles": [
      "./jest/mocks/react-native-svg.js"
    ]
  }
};

And then create a file ./jest/mocks/react-native-svg.js:

jest.mock('react-native-svg', () => require('react-native-svg-web'));

FAQs

Package last updated on 27 Jan 2020

Did you know?

Socket

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.

Install

Related posts