1.0.9 • Published 7 years ago

express-staticencode v1.0.9

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
7 years ago

NPM

Express Static Encode

Basically this module will minify all javascript and CSS files with UglifyJS and CleanCSS automatically, if preload config be active all minifications will occur after the module are called, and all minified files will keep stored in the RAM memory, like a cache, when the preload config is in false the file will cache data after first file get.

Basic Usage

app.get('/assets/*', staticEncode({
  folder: '/assets',   // Static folder
  jsEncode: true,      // If you dont want to encode JS set to false (Default is true)
  cssEncode: true,     // If you dont want to encode CSS set to false (Default is true)
  preload: true,       // Load after config ended (Default is true)
  uglifyOptions: {},   // UglyfyJS options
  cleanCssOptions: {}, // CleanCSS options
  dev:false            // Set to true to dont save cache and dont encode
}));

We recommend PKG to encode the serverside source.

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

2.2.1

7 years ago