A template project for nodejs server using fastify. Has integrated linting, testing, coverage, reporting, GitHub actions for publishing to npm repository, dependency updates and other goodies.
Easily use this template to quick start a production ready nodejs project template.
# do this to start server
cp ./src/a.json ./src/app.json
npm install
npm run serve
# To hit end point, go to browser url http://127.0.0.1:5000/hello?name=rambo
# or to hit the authenticated url, do the curl command below
curl -X GET 'http://127.0.0.1:5000/helloAuth?name=rambo' -H 'authorization: Basic 123' -H 'Content-Type: application/json' -v
# use this for continuous reload while development
npm run serve:dev
!!!Please see all issues in the generated repository as an issue will be generated tracking the fix of each of the below items.
- Update package.json with your app defaults
- Check Build actions on pull requests.
- create a home page in wiki by going to wiki link https://github.com/<your_org>/<your_repo>/wiki
- Goto github
repository
>settings
> and uncheckAllow merge commits
. this is usually automatically done by code guardian bots in core.ai org. so you may just need to verify it. - In sonar cloud, enable Automatic analysis from
Administration Analysis Method
for the first time before a pull request is raised: - Check codacy runs on pull requests, set codacy defaults. You may remove codacy if sonar cloud is only needed.
- Update the above Code Guardian badges; change all
id=aicore_template-nodejs-ts
to the sonar id of your project fields. see this PR: aicore/libcache#13
Since this is a pure JS template project, build command just runs test with coverage.
> npm install // do this only once.
> npm run build
To lint the files in the project, run the following command:
> npm run lint
To Automatically fix lint errors:
> npm run lint:fix
> npm run test:unit
> npm run test:integ
You can edit src/testConfig.json
to change app config for tests after running the above command.
You have to set a repository secret APP_CONFIG_FOR_INTEG_TESTS
with
content of the text config.
- Goto your repository settings https://github.com///settings/secrets/actions
- Create a new
Repository secret
with nameAPP_CONFIG_FOR_INTEG_TESTS
and the secret as the config file contents. - The build verify action should now be able to use the secret.
- Note that pull requests cannot read repository secrets and subsequently cannot run integration tests.
> npm run test
Hello world Tests
✔ should return Hello World
#indexOf()
✔ should return -1 when the value is not present
Additionally, to run unit/integration tests only, use the commands:
> npm run test:unit
> npm run test:integ
To run all tests with coverage:
> npm run cover
Hello world Tests
✔ should return Hello World
#indexOf()
✔ should return -1 when the value is not present
2 passing (6ms)
----------|---------|----------|---------|---------|-------------------
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
----------|---------|----------|---------|---------|-------------------
All files | 100 | 100 | 100 | 100 |
index.js | 100 | 100 | 100 | 100 |
----------|---------|----------|---------|---------|-------------------
=============================== Coverage summary ===============================
Statements : 100% ( 5/5 )
Branches : 100% ( 2/2 )
Functions : 100% ( 1/1 )
Lines : 100% ( 5/5 )
================================================================================
Detailed unit test coverage report: file:///template-nodejs/coverage-unit/index.html
Detailed integration test coverage report: file:///template-nodejs/coverage-integration/index.html
After running coverage, detailed reports can be found in the coverage folder listed in the output of coverage command. Open the file in browser to view detailed reports.
To run unit/integration tests only with coverage
> npm run cover:unit
> npm run cover:integ
Unit and integration test coverage settings can be updated by configs .nycrc.unit.json
and .nycrc.integration.json
.
See https://github.com/istanbuljs/nyc for config options.
Please run npm run release
on the main
branch and push the changes to main. The release command will bump the npm
version.
!NB: NPM publish will faill if there is another release with the same version.
To publish a package to npm, push contents to npm
branch in
this repository.
If you are looking to publish to package owned by core.ai, you will need access to the GitHub Organization
secret NPM_TOKEN
.
For repos managed by aicore org in GitHub, Please contact your Admin to get access to core.ai's NPM tokens.
Alternatively, if you want to publish the package to your own npm account, please follow these docs:
- Create an automation access token by following this link.
- Add NPM_TOKEN to your repository secret by following this link
To edit the publishing workflow, please see file: .github/workflows/npm-publish.yml
We use Rennovate for dependency updates: https://blog.logrocket.com/renovate-dependency-updates-on-steroids/
- By default, dep updates happen on sunday every week.
- The status of dependency updates can be viewed here if you have this repo permissions in github: https://app.renovatebot.com/dashboard#github/aicore/template-nodejs
- To edit rennovate options, edit the rennovate.json file in root, see https://docs.renovatebot.com/configuration-options/ Refer
Several automated workflows that check code integrity are integrated into this template. These include:
- GitHub actions that runs build/test/coverage flows when a contributor raises a pull request
- Sonar cloud integration using
.sonarcloud.properties
SonarLint is currently available as a free plugin for jetbrains, eclipse, vscode and visual studio IDEs. Use sonarLint plugin for webstorm or any of the available IDEs from this link before raising a pull request: https://www.sonarlint.org/ .
SonarLint static code analysis checker is not yet available as a Brackets extension.
See https://mochajs.org/#getting-started on how to write tests Use chai for BDD style assertions (expect, should etc..). See move here: https://www.chaijs.com/guide/styles/#expect
Since it is not that straight forward to mock es6 module imports, use the follow pull request as reference to mock imported libs:
- sample pull request: https://github.com/aicore/libcache/pull/6/files
- setting up mocks
- using the mocks
ensure to import
setup-mocks.js
as the first import of all files in tests.
if you want to mock/spy on fn() for unit tests, use sinon. refer docs: https://sinonjs.org/
we use c8 for coverage https://github.com/bcoe/c8. Its reporting is based on nyc, so detailed docs can be found here: https://github.com/istanbuljs/nyc ; We didn't use nyc as it do not yet have ES module support see: digitalbazaar/bedrock-test#16 . c8 is drop replacement for nyc coverage reporting tool