├── .gitignore ├── .gitpod.yml ├── README.md ├── assertion-analyser.js ├── controllers └── convertHandler.js ├── package.json ├── public └── style.css ├── routes ├── api.js └── fcctesting.js ├── sample.env ├── server.js ├── test-runner.js ├── tests ├── 1_unit-tests.js └── 2_functional-tests.js └── views └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/README.md -------------------------------------------------------------------------------- /assertion-analyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/assertion-analyser.js -------------------------------------------------------------------------------- /controllers/convertHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/controllers/convertHandler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/package.json -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/public/style.css -------------------------------------------------------------------------------- /routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/routes/api.js -------------------------------------------------------------------------------- /routes/fcctesting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/routes/fcctesting.js -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- 1 | PORT= 2 | # NODE_ENV=test 3 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/server.js -------------------------------------------------------------------------------- /test-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/test-runner.js -------------------------------------------------------------------------------- /tests/1_unit-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/tests/1_unit-tests.js -------------------------------------------------------------------------------- /tests/2_functional-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/tests/2_functional-tests.js -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/boilerplate-project-metricimpconverter/HEAD/views/index.html --------------------------------------------------------------------------------