@ng.huyy/jslibs
v1.1.5
Published
```pwsh npm i "@ng.huyy/jslibs" ``` Console Color ```js const {Log} = require("@ng.huyy/jslibs") Log.warn(`Yellow line`) ```
Readme
npm i "@ng.huyy/jslibs"Console Color
const {Log} = require("@ng.huyy/jslibs")
Log.warn(`Yellow line`)Static Files Context
// nodemon --dev
app.DEBUG = process.argv.includes("--dev")
const {DEBUG} = router.app
//Init:
const {Context} = app.debug?require('../jslibs/index'):require('@ng.huyy/jslibs')
app.Context = Context.initContext()
//Cache memory static
app.use(express.static(path.join(__dirname, 'public'),{maxAge: 36000000}))
//Using:
//Router:
const {Context} = app
res.render('index.ejs',{Context:Context})
//Html
//... href="./css<%- typeof Context==="undefined"?"":Context.code %>"