ffjavascript/README.md

31 lines
676 B
Markdown
Raw Permalink Normal View History

2020-03-26 10:44:02 +01:00
# ffjavascript
2024-04-12 15:27:53 +02:00
2020-03-26 10:38:40 +01:00
Finite Field Library in Javascript
2024-04-12 15:27:53 +02:00
This package is tested to work in the following environments:
- **NodeJS**
- **Browser**
- **Chrome Extension**
2024-04-12 14:40:30 +01:00
- **Metamask Snaps (SES)**
## Knows Issues
2024-04-12 15:27:53 +02:00
2024-04-12 14:40:30 +01:00
### Webpack Configuration
2024-04-12 15:27:53 +02:00
2024-04-12 14:40:30 +01:00
If you're using the `ffjavascript` package in a webpack project (Next.js/Angular), you may need to disable the `splitChunks` option in your webpack configuration.
2024-04-12 15:27:53 +02:00
```javascript
module.exports = {
// ...
optimization: {
splitChunks: false,
},
// ...
};
```
2024-04-12 14:40:30 +01:00
## License
ffjavascript is part of the iden3 project copyright 2020 0KIMS association and published with GPL-3 license. Please check the COPYING file for more details.