ack-node
TypeScript icon, indicating that this package has built-in type declarations

1.5.1 • Public • Published

ack-node

Common server-side functionality, wrapped in one package, the Acker way

Table of Contents

Installation

$ npm install ack-node --save

Usage

var ack = require('ack-node')

Modules

ack.promise

See ack-p for full details

executed already running promise

ack.promise('val1','val2').then((v1,v2)=>console.log(v1,v2))

ack.Promise

Traditional resolve/reject promise

ack.Promise((res,rej)=>{}).then()

ack.ip

Internet Protocol address functionality

/** matches 192.168 and other internal network ips */
ack.ip('192.168.0.0').isPrivate()
 
/** matches host machine ips */
ack.ip('127.0.0.0').isHost()

ack.path - system directory functionality

See ack-path for full details

//created directory if not existant
ack.path(__dirname).paramDir().then()
 
//string manipulation
ack.path(__dirname).join('a','b','c.js').path// = __dirname/a/b/c.js
 
//string manipulation
ack.path('/test/file.js').removeExt().path// = /test/file
 
//string manipulation
ack.path('/test/file').removeExt().path// = /test/file
 
//string manipulation
ack.path('/test/file.js').removeFile().path// = /test/
 
//string manipulation
ack.path('/test/').removeFile().path// = /test/
 
//path delete promise
ack.path(__dirname).delete().then()
 
ack.path(__dirname).sync().exists()//NONASYNC

ack.file

System file functionality

See ack-path for full details

ack.file(__dirname).delete().then()
ack.file(__dirname).getMimeType()//Ex: application/javascript
ack.file(__dirname).stat().then(stats=>stats.size)
ack.file(__dirname).write(string).then()
ack.file(__dirname).append(string).then()
 
//string manipulations
ack.file(__dirname).join('test-file.js').path
ack.file(__dirname).Join('test-file.js').path//creates new instance, leaving original alone
ack.file(__dirname).join('test-file.js').removeExt().path//Manipulates path by removing one file extension

ack.jwt

json web tokens. See jsonwebtoken for full details

var payload = {some:'data',hello:'world'}
var signed = ack.jwt(payload,'your-secret-key').sign()
 
ack.jwt(signed,'your-secret-key').verify().then(payload)

ack.req

Outbound http/https requests based on functionality provived by request

Send Example

ack.req(url)
.send()
.then((body,response)=>console.log(body))
.catch(e=>console.error(e))

Send Example Without Promise Spread

ack.req(url).set('spread',false)
.send()
.then(response=>console.log(response.body))
.catch(e=>console.error(e))

Post Example

ack.req(url).post(data)
.then((body,response)=>console.log(body))
.catch(e=>console.error(e))

Put Example

ack.req(url).put(data)
.then((body,response)=>console.log(body))
.catch(e=>console.error(e))

Delete Example

ack.req(url).delete()
.then((body,response)=>console.log(body))
.catch(e=>console.error(e))

ack.reqres

Request response handler

sendJson(variable, pretty)

app.use((req,res)=>{
  ack.reqres(req,res).sendJSON( {hello:"world"} )
})

send file

app.use((req,res)=>{
  const reqres = ack.reqres(req,res)
  reqres.input.header('content-type','application/pdf')
  reqres.send( pdfVar )
})

ack.router

Access to Middleware

const ackRouters = require('ack-node').router()

Mix with Connect or Express

var app = require('express')()//common request routing app
 
//Ignore fav.ico, timeout in 3000ms, and all requests will be gzipped if applicable
app.get('/', ackRouters.ignoreFavors(), ackRouters.timeout(3000), ackRouters.compress)

Router Table of Contents

.cacheFor(seconds)
  • return middleware that sets cache-control header for every request
.notFound( optional_message )
  • optional_message: default='Not Found - ${path}'
.timeout(ms, options)
  • returns middleware that forces requests to timeout. Uses npm connect-timeout
.compress(options)
  • returns middleware that GZIP requests. See npm compression
.cors(options)
  • returns middleware for cross orgin services
  • options {origin:'url-string'}. No options means allow all. See package cors
.relocate(url)
  • return middleware that pushes requests to a new url
.ignoreFavors()
  • returns middleware that 404s requests matching typical fav.ico files
.closeDevErrors()
  • returns middleware that closes errors with crucial details needed during development
.htmlCloseError(options)
  • Returns universal error handler middleware
  • options {debug:true/false, debugLocalNetwork:true}
.jsonCloseError(options)
  • returns middleware that handles errors with JSON style details
  • options {debug:true/false, debugLocalNetwork:true}
.closeProductionErrors()
  • returns middleware that conditions errors returned to provide useful responses without exact detail specifics on excepetions thrown
.consoleNonProductionErrors(options)
  • returns middleware that conditions errors returned to provide useful responses with exact detail specifics on excepetions thrown
.urlVarAsAuthHeader(varName)
  • returns middleware that upgrades a url variable into an Authorization header
.cookieAsAuthHeader(varName)
  • returns middleware that upgrades a cookie variable into an Authorization header
.jwt(secret,options)
  • returns middleware that handles the processing of JWT

  • options {...}

    • requestKeyName: 'auth'//where parsed data will live (aka as requestProperty)
.logging(format,options)

returns middleware that makes server logging colorful and useful. Request-end result logging. See npm morgan.

  • format
    • default dev env format: 'dev' aka ':method :url :status :res[content-length] - :response-time ms'
    • default pro env format: ':http-version/:method :url-short :colored-status :res[content-length] - :response-time ms :remote-addr :remote-user'
    • "url-short" is a custom made morgan.token()
    • "colored-status" is a custom made morgan.token()
.logToArray(options)

returns middleware the records requests to an array of specified maxLength. Uses .logging(format,options)

  • options
    • array:[]
    • maxLength:25
.errorsToArray(options)

returns middleware the records errors to an array of specified maxLength

  • options
    • array:[]
    • maxLength:25
.uploadByName(name, options)
  • returns middleware that uploads files. Creates req.files array
  • **options - see function paramUploadOptions
.methodNotAllowed(message)
  • returns middleware that throws 405 errors on request
.throw(ErrorOrMessage)
  • returns middleware that throws 400 errors on request
.parseBody(options)
  • returns middleware that parses request bodies into request.body object
  • options
.parseMultipartFields()
  • returns middleware that parse multi-part requests. Creates request.body which contains all form post fields

NOTE: Cannot be used with any other multipart reader/middleware. Only one middleware can read a stream

.uploadOneByName(name, options)
  • returns middleware that uploads only one file. Creates req[name] file
  • options - see function paramUploadOptions
    • Cannot be used with any other multipart reader/middleware. Only one middleware can read a stream
    • Any BODY/POST variables will be parsed and made available as req.body
.uploadOneByNameToPath(name, path, options)
  • for more information see uploadOneByName
  • name - input file field name expected to receive file on
  • path - exact file path or if folder path, then file upload name will be used
  • options - see function paramUploadOptions

NOTES:

  • Cannot be used with any other multipart reader/middleware. Only one middleware can read a stream
  • Any BODY/POST variables will be parsed and made available as req.body
.uploadArrayByName(name, options)
  • returns middleware that uploads an array of files. Creates req[name] array
  • options - see function paramUploadOptions
    • Cannot be used with any other multipart reader/middleware. Only one middleware can read a stream
    • Any BODY/POST variables will be parsed and made available as req.body
.localNetworkOnly(message)
  • returns middleware that only allows local network requests
.noRobots()
  • returns middleware that responds with a text/plain message of "User-agent: *\rDisallow: /"

ack-x

Additional lower level functionality is provided by ack-x

Date Example

require('ack-node').date().now().mmddyyyy()

The above and many more examples of modules provided by ack-x can be seen here

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.5.11latest

Version History

VersionDownloads (Last 7 Days)Published
1.5.11
1.5.01
1.4.20
1.4.10
1.3.30
1.4.02
1.3.20
1.3.11
1.3.00
1.2.130
1.2.120
1.2.110
1.2.100
1.2.90
1.2.80
1.2.70
1.2.60
1.2.50
1.2.40
1.2.30
1.2.20
1.2.10
1.2.00
1.1.90
1.1.80
1.1.70
1.1.60
1.1.50
1.1.40
1.1.30
1.1.20
1.1.10
1.1.00
1.0.320
1.0.310
1.0.300
1.0.290
1.0.281
1.0.270
1.0.261
1.0.251
1.0.240
1.0.231
1.0.220
1.0.210
1.0.200
1.0.190
1.0.180
1.0.170
1.0.160
1.0.150
1.0.140
1.0.130
1.0.120
1.0.110
1.0.100
1.0.91
1.0.80
1.0.70
1.0.60
1.0.50
1.0.40
1.0.30
1.0.20
1.0.10
1.0.00

Package Sidebar

Install

npm i ack-node

Weekly Downloads

10

Version

1.5.1

License

MIT

Unpacked Size

188 kB

Total Files

52

Last publish

Collaborators

  • ackerapple