react-native-svg-web

1.0.9 • Public • Published

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'));

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.938,719latest

Version History

VersionDownloads (Last 7 Days)Published
1.0.938,719
1.0.80
1.0.7382
1.0.60
1.0.50
1.0.40
1.0.30
1.0.21
1.0.1854
1.0.01

Package Sidebar

Install

npm i react-native-svg-web

Weekly Downloads

39,957

Version

1.0.9

License

MIT

Unpacked Size

5.61 kB

Total Files

3

Last publish

Collaborators

  • bakerface