https://github.com/streetwriters/notesnook-importer
Import your notes from any app into Notesnook
https://github.com/streetwriters/notesnook-importer
hacktoberfest
Last synced: 7 months ago
JSON representation
Import your notes from any app into Notesnook
- Host: GitHub
- URL: https://github.com/streetwriters/notesnook-importer
- Owner: streetwriters
- License: gpl-3.0
- Created: 2022-10-04T07:12:02.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-05T05:01:30.000Z (9 months ago)
- Last Synced: 2025-03-28T07:06:15.586Z (7 months ago)
- Topics: hacktoberfest
- Language: TypeScript
- Homepage: https://importer.notesnook.com/
- Size: 61.2 MB
- Stars: 86
- Watchers: 5
- Forks: 16
- Open Issues: 107
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Notesnook Importer
Import your notes from any app into Notesnook
Try it out! | Developer guide | How to build?## Build instructions
### Setting up the development environment
Requirements:
1. [Node.js](https://nodejs.org/en/download/)
2. [git](https://git-scm.com/downloads)
3. NPM (not yarn or pnpm)Before you can do anything, you'll need to [install Node.js](https://nodejs.org/en/download/) on your system.
Once you have completed the setup, the first step is to `clone` the monorepo:
```bash
git clone https://github.com/streetwriters/notesnook-importer.git# change directory
cd notesnook-importer
```Once you are inside the `./notesnook-importer` directory, run the preparation step:
```bash
# this might take a while to complete
npm install
```Now you can finally start the importer:
```bash
npm run start
```If you'd like to build in production mode:
```bash
npm run build# serve the app locally
npx serve apps/importer/build
```### Running the tests
When you are done making the required changes, you need to run the tests. The tests can be started with a single command:
```bash
npm run test:core
```