├── .eslintrc.json ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── crawler.js ├── examples ├── check-ex-links-on-domain.js ├── save-pages.js └── simple-app.js ├── logo.png ├── package.json └── tests ├── crawler.config.json ├── crawler.test.js └── src ├── page-with-links-and-tag-base.html └── page-with-links.html /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/README.md -------------------------------------------------------------------------------- /crawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/crawler.js -------------------------------------------------------------------------------- /examples/check-ex-links-on-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/examples/check-ex-links-on-domain.js -------------------------------------------------------------------------------- /examples/save-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/examples/save-pages.js -------------------------------------------------------------------------------- /examples/simple-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/examples/simple-app.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/package.json -------------------------------------------------------------------------------- /tests/crawler.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/tests/crawler.config.json -------------------------------------------------------------------------------- /tests/crawler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/tests/crawler.test.js -------------------------------------------------------------------------------- /tests/src/page-with-links-and-tag-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/tests/src/page-with-links-and-tag-base.html -------------------------------------------------------------------------------- /tests/src/page-with-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safonovpro/node-html-crawler/HEAD/tests/src/page-with-links.html --------------------------------------------------------------------------------