This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
---
<div class="jumbotron">
<div class="container">
<h1>{{ site.title }}</h1>
<p>
paeckchen (german for small parcel) is an incremental, fast and efficient JavaScript module bundler doing one thing well.
</p>
<p class="text-muted">
<small>Most JavaScript module bundlers do a lot of things – being plugin pipelines, fulfilling development setup wishes, being development servers and so on. This breadth of features inevitably comes with tradeoffs.</small>
</p>
<p class="text-muted">
<small>paeckchen on the other hand is designed to do exactly one thing: It bundles your JavaScript modules. This focus allows paeckchen to do its job fast and efficiently.</small>
</p>
<p><a class="btn btn-primary btn-lg" href="https://github.com/paeckchen/paeckchen" role="button">Learn more »</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>ES2015 module support</h2>
<p>
paeckchen is able to understand ES2015 module syntax. This means you do not need to transpile your
sources before bundling if you perfer to use ES2015 modules.
</p>
</div>
<div class="col-md-4">
<h2>Incremental bundling</h2>
<p>
Using the abstract syntax tree (AST) as cache structure paeckchen is really fast with updating the bundle
contents.
</p>
</div>
<div class="col-md-4">
<h2>SourceMaps</h2>
<p>
For easier debugging bundled code source mapping is included.
</p>
</div>
</div>
<hr>
{% include footer.html %}
</div>