├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib └── module.js ├── package.json ├── test ├── fixture │ ├── express │ │ └── routes │ │ │ └── index.js │ ├── nuxt.config.js │ └── pages │ │ └── index.vue └── module.test.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/README.md -------------------------------------------------------------------------------- /lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/lib/module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/express/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/test/fixture/express/routes/index.js -------------------------------------------------------------------------------- /test/fixture/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/test/fixture/nuxt.config.js -------------------------------------------------------------------------------- /test/fixture/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/test/fixture/pages/index.vue -------------------------------------------------------------------------------- /test/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/test/module.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptownhr/nuxt-express-module/HEAD/yarn.lock --------------------------------------------------------------------------------