An open API service indexing awesome lists of open source software.

https://github.com/dimforge/nalgebra.rs

Source code for the website of the nalgebra project.
https://github.com/dimforge/nalgebra.rs

Last synced: 7 months ago
JSON representation

Source code for the website of the nalgebra project.

Awesome Lists containing this project

README

          

nalgebra.org
============

This is the repository for [nalgebra.org](https://www.nalgebra.org).

## Working locally
To build, install the [yarn package manager](https://yarnpkg.com/) and run
```
yarn install
```
to install the required dependencies, and
```
yarn start
```
to serve the website locally.

### Troubleshooting

If you get an error like
```
at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3)
{
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
}
```
you might be able to work around it with the following environment variable:
```
export NODE_OPTIONS=--openssl-legacy-provider
```