https://github.com/standardnotes/sntools
Evernote converter and other tools
https://github.com/standardnotes/sntools
Last synced: 11 months ago
JSON representation
Evernote converter and other tools
- Host: GitHub
- URL: https://github.com/standardnotes/sntools
- Owner: standardnotes
- License: agpl-3.0
- Created: 2017-01-10T01:43:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-05-30T13:16:11.000Z (over 2 years ago)
- Last Synced: 2024-04-14T13:13:22.176Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 9.53 MB
- Stars: 18
- Watchers: 4
- Forks: 10
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sntools
## Development
### Getting started
To run locally:
1. Clone the project
2. Install Yarn
- If NPM is installed, `npm -g install yarn`.
- Otherwise, install instructions via [yarnpkg.com](https://yarnpkg.com/getting-started/install).
3. Run `yarn` to install dependencies
4. Run `yarn start` to start dev server
5. Open [http://localhost:8081/](http://localhost:8081)
### SSL Error running project
If you run into the error: `ERR_OSSL_EVP_UNSUPPORTED`, you can bypass this by running:
```bash
export NODE_OPTIONS=--openssl-legacy-provider
```
### Running Tests
Assuming Yarn installed:
```bash
yarn jest
```