Building a Minimalist Docker Image with Node, TypeScript

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

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • pnpm

    Fast, disk space efficient package manager

  • FROM node:18.16.0-alpine RUN apk add \ curl \ git \ && rm -rf /var/cache/* \ && mkdir /var/cache/apk RUN mkdir -p /app WORKDIR /app RUN mkdir -p /bin && curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v8.6.3/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm; ENV PATH /app/node_modules/.bin:$PATH ADD package.json pnpm-lock.yaml .npmrc /app/ RUN pnpm install ADD . /app RUN pnpm run build EXPOSE 5000 CMD [ "pnpm", "start" ]

  • swc

    Rust-based platform for the Web

  • Why Speedy Web Compiler ?

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • tswc

    Compile your TypeScript with tsconfig.json using swc

  • In development environment swc is used along with ts-node and in production we're using tswc, which compiles the files using swc

  • docker-typescript-pnpm

  • Here is the source code for this setup : https://github.com/JacobSamro/docker-typescript-pnpm

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

  • Node package managers (npm, yarn, pnpm) - All you need to know

    3 projects | dev.to | 2 May 2024
  • Bun 1.1

    17 projects | news.ycombinator.com | 1 Apr 2024
  • Set up your own LMQL environment.

    3 projects | /r/LocalLLaMA | 7 Dec 2023
  • What's New in Node.js 21

    8 projects | dev.to | 1 Nov 2023
  • Yarn 4.0

    10 projects | news.ycombinator.com | 23 Oct 2023