Coder Social home page Coder Social logo

adammacias / npm-the-right-way Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vulcanjs/npm-the-right-way

0.0 1.0 0.0 844 KB

Demonstration of how you build full-stack, typed, NPM packages, the right way

JavaScript 33.68% TypeScript 54.62% CSS 11.70%

npm-the-right-way's Introduction

NPM Packages - The Right way

This repository aims to demonstrate how to build NPM packages the right way.

  • my-package should import the shared code, built for the current environment.
  • my-package/server should import the server-only code (and maybe shared code as well?)
  • my-package/client should import the client-only code (and maybe shared code as well?)
  • Packages should be written in TypeScript and expose their type definitions

Bonus features:

  • Folders may have multiple indexes index.client.ts, index.server.ts etc.
  • Support common 3rd party tools: importing in Jest, Storybook, Cypress...

To sum it up, we want to demonstrate how to build fullstack, typed NPM packages.

We take inspiration from Meteor package system: https://guide.meteor.com/writing-atmosphere-packages.html. They provide an incredible developer experience, but were sadly limited to Meteor apps and suffer from a few technical issues. We want to achieve the same "DevX" with modern, generic bundlers.

Note: the shared code will be exactly the same in both environment, this is slightly different to what we call isomorphism. Isomorphism is only possible with some magic at import time (basically changing my-package to my-package/<current-environment> at build time in your app), which is out of scope here.

Run and test

  • Clone this repo
  • yarn - Install relevant packages
  • cd my-package-webpack && yarn && yarn run publish - Will build your package + generate a tarball
  • cd .. && cd demo-next-app && yarn && yarn run dev - Will start a Next.js app that imports each package
  • Open relevant page to test the import

How you can help

See contribute section below.

You can:

  • add a demo with a new bundler: Rollup, Tsup (https://github.com/egoist/tsup) (done :), Unbuild (https://github.com/unjs/unbuild) could be great candidates.
  • exploring TSDX (https://github.com/jaredpalmer/tsdx): how could contribute to this project, which ideas we could test here
  • improve the build for one of the bundler we cover
  • add automated tests for the Next.js app, using Jest or Cypress
  • open an issue with ideas, feedback, knowledge about bundlers, a feature you'd like to test etc. etc.
  • add a performance benchmark
  • automate building, facilitate development

Learnings - various

Formats

  • UMD used to be the way to go for having a single shared bundle, but now ES Modules should be preferred. Moderne bundlers such as Esbuild might not support them: evanw/esbuild#507
  • In Webpack, commonjs2 seems to do something similar to UMD
  • ES Modules will be the reference in the short run

NPM packages

  • NPM exports will be the reference in the short run, but:
    • need better support in TypeScript
    • need better support in Jest, should be shipped in Jest 28: jestjs/jest#9771

TypeScript

Esmodules

  • They are more appropriate for packages as "IIFE", because packages might be imported within an app that will in turn be built. ES modules will give more freedom to the app bundler, while in an NPM package we want to minimize the build step. See https://esbuild.github.io/api/#format
  • Setting "type":"module" in package.json will apply to all exports with .js extension! So if you use CommonJS exports for Node + ESM for browser the Node imports will break. This applies to conditional exports too. Instead, make sure that CommonJS file are using .cjs extension!
  • Exporting Node to ES modules is a bad idea. Instead use conditionnal exports, and CommonJS for node code.
  • CommonJS exports must end with .cjs and ES Modules with .mjs! ".js" alone is ambiguous! Its behaviour changes depending on the type: "module" option of package.json, leading to confusing behaviour.

TSDX

TSDX is a brillant project that helps bootstrapping NPM package development

  • It includes dev vs prod bundle with a loading based on the current NODE_ENV => very interesting pattern, that we could use here
  • It includes a nice support for Lodash
  • It is based on top of Rollup for the build
  • Limitations: it doesn't demo a monorepo and doesn't demo fullstack packages, but could probably be extended to do so

Others

  • Typing the bundler config is often difficult, because they are run at low-level, using Node. The @types directive in comments might help having IntelliSense in VS code, without actually using TypeScript files.
  • Don't forget to drop .next from time to time when working with local packages. Next.js might cache them, leading to stale imports
  • NPM and/or Yarn may cache .tgz files in an unexpected way, reinstalling a stale version everytime:yarnpkg/yarn#6811

Learning - per build tools

Webpack

  • Works ok, but slow
  • Webpack has a weird way to handle packages in Lerna repo, the bundle sometimes end up containing the current package + imports: lerna/lerna#3006

At the moment this repo doesn't demo importing other packages, or monorepo, but it could useful in the future.

Esbuild

  • Handling external is utterly painful for the server export! You want to add packages such as React, Graphql etc. as "externals" but there is no easy way to add all packages from package.json as externals
  • The demo works, but it may still generate const React = require('React') in the ESM build in some real-life context, while "require" should never appear in an ESM module

Tsup

  • Tsup is an abstraction over Esbuild. It sounds more relevant for people that build packages (treating node modules as externals ; generating .d.ts etc.)
  • Supports .d.ts generation but probably not .d.ts.map which are needed for local development (switching to types in VS code) => it might still be necessary to use tsc during dev
  • Changing the kind of built file might change the extensions, be careful with that (sometimes .js is the commonJS, sometimes the ES modules). This may lead to the following confusing behaviour:: when using cjs and esm as the the output, .js will be the CommonJS export, and .mjs the ES module export. If you add type: module to your package.json, the CommonJS .js export will actually be considered as an ES Module! Conditional exports are supposed to avoid this issue (you don't need to use type:"module" with them) but may not work

Unbuild

Contribute

  • If you want to test a new bundler, copy package-template and setup package.json accordingly. Please try to modify only the package.json: this way we can compare bundlers against the same basic features.

  • Then add a new page in the Next.js demo app.

  • To update a package, run yarn run publish to build and pack it, and rerun yarn in the Next.js app. You may need to use npm if the package is not updated, see yarnpkg/yarn#6811, for example npm i my-package-webpack. This is because of a bug in Yarn relative to local packages when using tarballs and relative paths.

  • You may use this package to reproduce bugs for certain bundlers. In this case, reproduce your bug, and open a pull request. We'll keep it open until the maintainers of the bundler fix the bug.

  • If you want to test a new feature (exporting React components, supporting path aliases or whatever), you may open a PR modifying the "package-template". We can then apply this change to all the packages using a command in the future, or apply it manually.

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.