├── .babelrc ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── screenshots ├── image-1.png ├── image-2.png ├── image-3.png ├── image-4.png ├── image-5.png └── working.gif ├── src ├── feed.js ├── helpers.js ├── index.js ├── notion.js └── parser.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/image-1.png -------------------------------------------------------------------------------- /screenshots/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/image-2.png -------------------------------------------------------------------------------- /screenshots/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/image-3.png -------------------------------------------------------------------------------- /screenshots/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/image-4.png -------------------------------------------------------------------------------- /screenshots/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/image-5.png -------------------------------------------------------------------------------- /screenshots/working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/screenshots/working.gif -------------------------------------------------------------------------------- /src/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/src/feed.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/notion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/src/notion.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/src/parser.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravgeetdhillon/notion-feeder/HEAD/webpack.config.js --------------------------------------------------------------------------------