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.
- Host: GitHub
- URL: https://github.com/dimforge/nalgebra.rs
- Owner: dimforge
- License: bsd-3-clause
- Created: 2018-05-11T19:51:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-28T17:28:41.000Z (12 months ago)
- Last Synced: 2025-07-30T05:14:04.359Z (7 months ago)
- Language: JavaScript
- Homepage: http://nalgebra.org
- Size: 4.53 MB
- Stars: 8
- Watchers: 2
- Forks: 25
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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
```