├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── html-analyzer.d.ts ├── html-analyzer.js ├── html-analyzer.js.map ├── index.d.ts ├── index.js ├── index.js.map ├── interfaces.d.ts ├── interfaces.js ├── interfaces.js.map ├── seo-analyzer.d.ts ├── seo-analyzer.js ├── seo-analyzer.js.map ├── seo-check.d.ts ├── seo-check.js └── seo-check.js.map ├── package.json ├── src ├── html-analyzer.ts ├── index.ts ├── interfaces.ts ├── seo-analyzer.ts └── seo-check.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /src 2 | /node_modules 3 | *.log 4 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/README.md -------------------------------------------------------------------------------- /dist/html-analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/html-analyzer.d.ts -------------------------------------------------------------------------------- /dist/html-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/html-analyzer.js -------------------------------------------------------------------------------- /dist/html-analyzer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/html-analyzer.js.map -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/interfaces.d.ts -------------------------------------------------------------------------------- /dist/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/interfaces.js -------------------------------------------------------------------------------- /dist/interfaces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/interfaces.js.map -------------------------------------------------------------------------------- /dist/seo-analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-analyzer.d.ts -------------------------------------------------------------------------------- /dist/seo-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-analyzer.js -------------------------------------------------------------------------------- /dist/seo-analyzer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-analyzer.js.map -------------------------------------------------------------------------------- /dist/seo-check.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-check.d.ts -------------------------------------------------------------------------------- /dist/seo-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-check.js -------------------------------------------------------------------------------- /dist/seo-check.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/dist/seo-check.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/package.json -------------------------------------------------------------------------------- /src/html-analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/src/html-analyzer.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/seo-analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/src/seo-analyzer.ts -------------------------------------------------------------------------------- /src/seo-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/src/seo-check.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/seord/HEAD/tsconfig.json --------------------------------------------------------------------------------