Create a typescript utility library using Vite

This page summarizes the projects mentioned and recommended in the original post on dev.to

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • ts-library

    Utility library using Vite and TS

    The code for this series is hosted in Github here.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • vite

    Next generation frontend tooling. It's fast!

    import { defineConfig } from 'vite'; import { resolve } from 'path'; // https://vitejs.dev/config/ export default defineConfig({ build: { lib: { entry: resolve(__dirname, 'src/main.ts'), formats: ['es'] } }, resolve: { alias: { src: resolve('src/') } }, });

  • husky

    Git hooks made easy 🐶 woof!

    To automate that we need some kind of pre-commit hook validation. That's where husky and lint-staged plugins come in handy let's install and set them up.

  • prettier

    Prettier is an opinionated code formatter.

    I'm going with Prettier to format the code. Formatting helps us to keep our code uniform for every developer.

  • node

    Node.js JavaScript runtime ✨🐢🚀✨

    Node.js

  • jest

    Delightful JavaScript Testing.

    We are going to use the most popular unit testing framework Jest for writing our unit tests.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • TypeScript Boilerplate

    6 projects | dev.to | 17 Sep 2023
  • Testing in ReScript

    8 projects | dev.to | 2 Jan 2023
  • Conditional Logging to the JavaScript Console

    4 projects | dev.to | 14 Nov 2022
  • Boilerplate for Typescript-Express with sequelize ORM

    14 projects | dev.to | 8 Nov 2022
  • My 15+ Reasons to use JHipster

    6 projects | dev.to | 9 Mar 2022