All Projects → egoist → Poi

egoist / Poi

Licence: mit
⚡A zero-config bundler for JavaScript applications.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
applescript
352 projects
HTML
75241 projects
CSS
56736 projects
SCSS
7915 projects

Projects that are alternatives of or similar to Poi

Static Site Boilerplate
A better workflow for building modern static websites.
Stars: ✭ 1,633 (-69.14%)
Mutual labels:  webpack, babel, postcss
Hops
Universal Development Environment
Stars: ✭ 158 (-97.01%)
Mutual labels:  webpack, babel, postcss
Preact Minimal
🚀 Minimal preact structure
Stars: ✭ 136 (-97.43%)
Mutual labels:  webpack, babel, preact
Sku
Front-end development toolkit
Stars: ✭ 403 (-92.38%)
Mutual labels:  webpack, build-tool, babel
Instapy Gui
gui for instapy automation
Stars: ✭ 313 (-94.08%)
Mutual labels:  webpack, babel, preact
Astexplorer.app
https://astexplorer.net with ES Modules support and Hot Reloading
Stars: ✭ 65 (-98.77%)
Mutual labels:  webpack, babel, postcss
Webpack Encore
A simple but powerful API for processing & compiling assets built around Webpack
Stars: ✭ 1,975 (-62.67%)
Mutual labels:  webpack, babel, postcss
Book
《现代化前端工程师权威指南》https://guoyongfeng.github.io/book/
Stars: ✭ 141 (-97.34%)
Mutual labels:  webpack, babel, postcss
Support
JS.coach is a manually curated list of packages related to React, Webpack, Babel and PostCSS
Stars: ✭ 305 (-94.24%)
Mutual labels:  webpack, babel, postcss
Webpack Blocks
📦 Configure webpack using functional feature blocks.
Stars: ✭ 2,992 (-43.45%)
Mutual labels:  webpack, babel, postcss
Js Toolbox
CLI tool to simplify the development of JavaScript apps/libraries with little to no configuration. (WORK IN PROGRESS/PACKAGE NOT PUBLISHED).
Stars: ✭ 53 (-99%)
Mutual labels:  webpack, babel, postcss
Neutrino
Create and build modern JavaScript projects with zero initial configuration.
Stars: ✭ 3,844 (-27.35%)
Mutual labels:  webpack, build-tool, preact
React Ssr Setup
React Starter Project with Webpack 4, Babel 7, TypeScript, CSS Modules, Server Side Rendering, i18n and some more niceties
Stars: ✭ 678 (-87.19%)
Mutual labels:  webpack, babel, postcss
React Boilerplate
This project is deprecated. Please use CRA instead.
Stars: ✭ 88 (-98.34%)
Mutual labels:  webpack, babel, postcss
Nwb
A toolkit for React, Preact, Inferno & vanilla JS apps, React libraries and other npm modules for the web, with no configuration (until you need it)
Stars: ✭ 5,429 (+2.61%)
Mutual labels:  webpack, babel, preact
Modular Css
A streamlined reinterpretation of CSS Modules via CLI, API, Browserify, Rollup, Webpack, or PostCSS
Stars: ✭ 234 (-95.58%)
Mutual labels:  webpack, svelte, postcss
Pwa
An opinionated progressive web app boilerplate
Stars: ✭ 353 (-93.33%)
Mutual labels:  webpack, babel, postcss
Naomi
Sublime Text enhanced syntax highlighting for JavaScript ES6/ES7/ES2015/ES2016/ES2017+, Babel, FlowType, React JSX, Styled Components, HTML5, SCSS3, PHP 7, phpDoc, PHPUnit, MQL4. Basic: Git config files.
Stars: ✭ 544 (-89.72%)
Mutual labels:  webpack, babel, postcss
Webpack Boilerplate
A minimal webpack 5 boilerplate with only Babel, SASS and lodash (optional) on board
Stars: ✭ 404 (-92.36%)
Mutual labels:  webpack, babel
Xiaoduyu.com
🐟小度鱼 - 年轻人的交流社区 https://www.xiaoduyu.com
Stars: ✭ 549 (-89.62%)
Mutual labels:  webpack, babel

⚠️ Poi has been deprecated, please migrate to Vite, contact me personally if you need help.


npm version build status npm downloads poi twitter

Poi is a bundler built on the top of webpack, trying to make developing and bundling apps with webpack as easy as possible.

The Poi project is supported by our Backers and funded through Patreon.

Features

  • 📦 Out of box support for JS, CSS, File assets and more.
  • Framework-agnostic but also support JSX, Vue and more with no configs.
  • 🔌 Great extensibility.
  • 🐙 Fits most web apps, npm libs.
  • 🚨 Great development experience.

Quick Overview

Before we get started, ensure that you have installed Node.js (>=8) and Yarn (or npm) on your machine.

Get Started Immediately

yarn global add create-poi-app
create-poi-app my-app

cd my-app
npm run dev

Then open http://localhost:4000 to see your app.
When you’re ready to deploy to production, create a minified bundle with npm run build.

Get Started Manually

Inside an empty project, run yarn init or npm init to create a package.json and install Poi:

yarn init
yarn add poi --dev

Now all you need is to create an entry file, like if you're building a website, just create an index.js:

const el = document.createElement('div')
el.textContent = 'Hello Poi!'

document.body.appendChild(el)

Now if you run:

yarn poi --serve

You will get a URL like http://localhost:4000 which you can open to preview the app.

Next let's start adding some dependencies like a CSS file style.module.css:

.title {
  color: pink;
}
import styles from './style.module.css'

const el = document.createElement('div')
el.className = styles.title
el.textContent = 'Hello Poi!'

document.body.appendChild(el)

Save it and the browser will automatically reload to apply the changes!

Documentation

📚 https://poi.js.org

You can improve it by sending pull requests to this repository.

Check out this repository for more examples.

Community

All feedback and suggestions are welcome!

Credits

Poi v12 wouldn't exist without the inspirations from following projects:

  • Webpack
  • Parcel 2
  • Poi itself
  • Vue CLI 3
  • Create React App

License

MIT © EGOIST

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].