Coder Social home page Coder Social logo

adevinwild / micro-ts Goto Github PK

View Code? Open in Web Editor NEW
86.0 0.0 2.0 51 KB

A minimalist template to create packages with TypeScript and microbundle from @developit

License: MIT License

TypeScript 66.49% JavaScript 33.51%
microbundle bootstrap bundle library npm package ready ready-to-use template ts

micro-ts's Introduction

micro-ts


micro-ts A micro-minimalist template to create TypeScript packages with `microbundle`.


Start now โœจ

Features ๐ŸŽ‰

  • Pre-configured microbundle repository ๐Ÿ“ฆ
  • Pre-configured eslint and prettier ๐Ÿ› ๏ธ
  • Pre-configured jest and ts-jest ๐Ÿงช

Usage ๐Ÿ“–

You can clone the repository or click on the Use this template button to create a new repository from this template.

Start hacking inside the src folder and run npm run build to build the package.

Publishing ๐Ÿš€

While we haven't included a specific package for publishing your NPM package, we do have a few recommendations for you. If you want a simple and straightforward method for publishing your package, we recommend using the np package. The following command will guide you through the publishing process, and it is an easy way to publish your package.

npx np

Configuration ๐Ÿ› ๏ธ

micro-ts is based on the microbundle package. You can find more information about the configuration here.

The package.json file contains the following keys:


{
"name": "foo", // your package name
"type": "module",
"source": "src/foo.js", // your source code
"exports": {
"require": "./dist/foo.cjs", // used for require() in Node 12+
"default": "./dist/foo.modern.js" // where to generate the modern bundle (see below)
},
"main": "./dist/foo.cjs", // where to generate the CommonJS bundle
"module": "./dist/foo.module.js", // where to generate the ESM bundle
"unpkg": "./dist/foo.umd.js", // where to generate the UMD bundle (also aliased as "umd:main")
"scripts": {
"build": "microbundle", // compiles "source" to "main"/"module"/"unpkg"
"dev": "microbundle watch" // re-build when source files change
}
}

This is a copy of the microbundle documentation.

When you build your project using microbundle, three different file formats are generated:

  • .umd.js: A Universal Module Definition (UMD) file format that works in different module systems, including AMD, CommonJS, and global scripts.

  • .module.js: An ES module file format that uses the import and export syntax and is designed to work in modern browsers and build tools.

  • .cjs: A CommonJS module file format that uses the require and module.exports syntax and is used in Node.js and older JavaScript environments.

You can use these file formats to target different environments.

License ๐Ÿ“

MIT

Start now โœจ

micro-ts's People

Contributors

adevinwild avatar bnb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

bnb rdela

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.