A starter project that makes creating a SDK Boilerplate extremely easy.
git clone https://github.com/USER/sdk-boilerplate.git YOURFOLDERNAME
cd YOURFOLDERNAME
# Run yarn install and write your library name when asked. That's all!
yarn install
yarn prepare
- RollupJS for multiple optimized bundles following the standard convention and Tree-shaking
- Tests, coverage and interactive watch mode using Jest
- Prettier and ESlint for code formatting and consistency
- Automatic types
(*.d.ts)
file generation
yarn test
: Run Jest tests suiteyarn build
: Run build SDKyarn serve
: Run Browser-Sync development server