A project template for new mojaloop services and libraries that uses Typescript.
Refer to CONTRIBUTING.md for information on how to contribute, committing changes, releases and snapshots.
This project provides a decent starting point for a new mojaloop library using typescript.
-
Go to https://github.com/new to create a new repo
-
Select the "mojaloop/template-typescript-public" template
-
Find and replace all instances of
itk-fineract-core-connector
globally across the whole project with your new project's name -
Update the package name and version to match in
package.json
:"name": "@mojaloop/repo-name", "version": "0.1.0", ...
-
Copy the necessary circle ci config from the templates.
cp ./.circleci/config.example.yml ./.circleci/config.yml rm -f ./.circleci/config.example.*
If the project is a Library:
Make sure to read comments and replace the applicable
publish
&publish-snapshot
jobs with the NPM Publish job variants.
npm install
Command to transpile Typescript into JS:
npm run build
Command to LIVE transpile Typescript into JS live when any changes are made to the code-base:
npm run watch
npm start
npm test