Skip to content

Commit

Permalink
First build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclo committed Feb 3, 2020
1 parent 9b7441a commit 2047dfe
Show file tree
Hide file tree
Showing 33 changed files with 11,200 additions and 2 deletions.
Empty file added .eslintignore
Empty file.
33 changes: 33 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
/**
* Set JavaScript language options
*/
"parserOptions": {
"sourceType": "module",
},
/**
* Set Environnement
*/
"env": {
"browser": true
},
/**
* Set globals
*/
"globals": {
},
/**
* Set rules
*/
"extends": "airbnb-base",
// Overwritten airbnb's rules:
"rules": {
strict: ["error", "global"],
func-names: ["error", "never"],
space-before-function-paren: ["error", "never"],
no-plusplus: ["error", { "allowForLoopAfterthoughts": true }],
"no-multi-spaces": [2, { exceptions: { "VariableDeclarator": true } }],
comma-style: ["error", "first", { "exceptions": { "ArrayExpression": true, "ObjectExpression": true } }],
indent: ["error", 2, { "VariableDeclarator": { "const": 2 }, "SwitchCase": 1 }]
}
}
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
__trash
_old_*

.nyc_output
coverage
node_modules
private_repo

_dist
8 changes: 8 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
__trash
_old_*

.nyc_output
coverage
node_modules
private_repo
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "10"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
script:
- npm run test
- npm run check-coverage
after_success:
- npm run report-coverage
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
### HEAD


### 0.0.0 (February 3, 2020)

* Initial commit,
* First build,
* ...,
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2020 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
171 changes: 169 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,169 @@
# es6pakket
A boilerplate for building Javascript ES6 libraries with Pakket
# ES6Pakket

[![NPM version][npm-image]][npm-url]
[![Travis CI][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![Dependencies status][dependencies-image]][dependencies-url]
[![Dev Dependencies status][devdependencies-image]][devdependencies-url]
[![License][license-image]](LICENSE.md)
<!--- [![node version][node-image]][node-url] -->

[![NPM install][npm-install-image]][npm-install-url]

ES6Pakket is a boilerplate for writing ES6 Javascript libraries that run on both Node.js and ECMAScript 2015 (ES6) compliant browsers.

The build doesn't require a transpiler (like babel) or a builder (like browserify, webpack or rollup) to produce a module that runs in the browser from source files that use `import` and `export` statements. It is useful if you want to keep your source code quite pure.

ES6Pakket relies on `Pakket` to drastically reduces the amount of extra code added to your library (go to [Pakket](https://www.npmjs.com/package/pakket) for details).

ES6Pakket relies on [Mocha](https://mochajs.org) and [Chai](http://chaijs.com) for unitary testing. It relies on [Istanbul](https://gotwarlost.github.io/istanbul/) for code coverage.

ES6Pakket uses [Travis CI](https://travis-ci.org) for continuous integration and [Coveralls.io](https://coveralls.io) to display test coverage.


## Quick Startup

You can easily get your first ES6Pakket library running in a couple of minutes by just typing a few command lines. But first, you need to create an empty folder. It will contain your library.

Then, you have to install the `ES6Pakket` package globally. Open a terminal session and type the command line:

```bash
npm install es6pakket -g
```

Or, if you don't have the rights to install es6lib globally, you can install it locally in your project. Open a terminal session, move to your working directory - the empty folder you created - and type the following command line:

```bash
npm install es6pakket
```

Now populate your empty folder and create your first UMD library:

```bash
// populate
es6pakket populate -n myapp
// Or, if you installed the package locally:
./node_modules/.bin/es6pakket populate -n myapp
// Install Node.js packages
npm install
```
Now your folder contains the following files:
```bash
Your project Folder
|_ lib
| |_ lib.js // Your built ES6 module,
|_ src
| |_ ... // The source files of your library,
| |_ ...
| |_ ...
|_ tasks
| |_ ... // The Gulp tasks to build your project,
|_ test
| |_ main.js // Your Mocha, Chai test file,
|_ .eslintignore // Files to be ignored by ESLint,
|_ .eslintrc // A Configuration file for the ESLint linter tool (if you use it),
|_ .gitignore // Files that Git must ignore (if you use git),
|_ .travis.yml // A configuration file for Travis CI (if you use it),
|_ .CHANGELOG.md // The changes between your different versions,
|_ .gulpfile.js // The main Gulp task,
|_ index.js // The link to your ES5 library,
|_ LICENSE.md // The license that applies to your library (here MIT),
|_ package-lock.json // The NPM dependency tree,
|_ package.json // The NPM package file,
|_ README.md // Your README file,
```
This folder is now a NPM package.
## How to build it
The file `gulpfile.js` contains the build instructions. These instructions populate the folder `lib` from the sources files included in the folder `src`.
`gulpfile.js` implements two operations for the build:
* the command `npm run build` creates the library at the execution,
* and the command `npm run watch` updates the library when one of the source files is modified.
## How to test it
Your `package.json` file contains three scripts to test your UMD library:
* `npm run test`,
* `npm run check-coverage`,
* `npm run display-coverage`.
`npm run test` executes the tests and computes the test coverage.
`npm run check-coverage` checks if the test coverage matches the requirements. Here 100%.
`npm run display-coverage` opens your browser and reports the test coverage.
## How to create a distribution version
Your `package.json` file contains a script to build a distribution library:
* `npm run makedist`
The script `makedist` adds a license header to the library and creates a minified version.
## How to use it
On Node.js, your project folder is viewed as a NPM package. Choose a working directory outside your project folder, create a folder `node_modules` and copy your project folder into `node_modules`. Then, on your terminal, type (at your working directory level):
```js
node
> var mylib = require('mylib');
undefined
> mylib.getString();
'I am a string!'
> mylib.getArray();
[ '1', '2', '3' ]
>
```
On the browser, pick-up the JS file `lib/mylib.js` and add it as a script in your HTML file. `mylib` is an immediately-invoked function expression. It attaches the `mylib` variable to the current context.
```html
<!DOCTYPE html>
<html>
<body>
<script src="mylib.js"></script>
<script>
console.log(mylib.VERSION);
</script>
</body>
</html>
```
Enjoy!
## License
[MIT](LICENSE.md).
<!--- URls -->
[npm-image]: https://img.shields.io/npm/v/@mobilabs/ES6Pakket.svg?style=flat-square
[npm-install-image]: https://nodei.co/npm/@mobilabs/ES6Pakket.png?compact=true
[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square
[download-image]: https://img.shields.io/npm/dm/@mobilabs/ES6Pakket.svg?style=flat-square
[travis-image]: https://img.shields.io/travis/jclo/ES6Pakket.svg?style=flat-square
[coveralls-image]: https://img.shields.io/coveralls/jclo/ES6Pakket/master.svg?style=flat-square
[dependencies-image]: https://david-dm.org/jclo/ES6Pakket/status.svg?theme=shields.io
[devdependencies-image]: https://david-dm.org/jclo/ES6Pakket/dev-status.svg?theme=shields.io
[license-image]: https://img.shields.io/npm/l/@mobilabs/ES6Pakket.svg?style=flat-square
[npm-url]: https://www.npmjs.com/package/@mobilabs/ES6Pakket
[npm-install-url]: https://nodei.co/npm/@mobilabs/ES6Pakket
[node-url]: http://nodejs.org/download
[download-url]: https://www.npmjs.com/package/@mobilabs/ES6Pakket
[travis-url]: https://travis-ci.org/jclo/ES6Pakket
[coveralls-url]: https://coveralls.io/github/jclo/ES6Pakket?branch=master
[dependencies-url]: https://david-dm.org/jclo/ES6Pakket
[devdependencies-url]: https://david-dm.org/jclo/ES6Pakket?type=dev
[license-url]: http://opensource.org/licenses/MIT

0 comments on commit 2047dfe

Please sign in to comment.