0.1.14 • Published 10 years ago

aitutils v0.1.14

Weekly downloads
2
License
MIT
Repository
-
Last release
10 years ago

Assign It To Us Utilities (aitutils)

This library contains common utilities used in Assign It To Us projects and products.

Library

The library covers 8 general areas

  1. Array
  2. Configuration
  3. Data
  4. File
  5. General
  6. Logging
  7. Parsing
  8. XML

To Install

To add this library to your project:

npm install aitutils --save

To use it

aitutils = require("aitutils").aitutils

API

Array

aitutils.array.isArrayOfObjects(object)

returns boolean

Check if an array is an array of objects.

Configuration

Loads a CSON configuration file and returns it as an object.

aitutils = require("aitutils").aitutils

config = aitutils.configuration.load("path/to/config.cson")

# you can also access the config again using the current property
current = aitutils.configuration.current

aitutils.configuration.load(path)

returns object

Data

Handles a variety of data formats.

This is currently Work-In-Progress.

File

Synchronous file tools.

aitutils.file.cleanPath(filePath)

returns string

Cleans up a file path by removing extra slashes, etc.

aitutils.file.ensureExtension(filePath, ext)

returns string

Ensures that the filePath has ext, if not, it is added to it. The extension should have a period in it.

console.log aitutils.file.ensureExtension("somefile.txt",".xls")

# somefile.txt.xls

aitutils.file.open(file)

returns string

Opens a file.

aitutils.file.save(file,data)

returns nothing

Saves data to a file.

aitutils.file.append(file, data)

returns nothing

Adds data to an existing file

aitutils.file.del(file)

returns nothing

Deletes a file.

aitutils.file.exists(file)

returns boolean

Checks if a file/folder exists.

aitutils.file.copy(source, destination, clobber)

returns nothing

Copies a file from one place to another. If clobber is provided and true, overwrites file.

aitutils.file.move(source, destination, clobber)

returns nothing

Moves a file from one place to another. If clobber is provided and true, overwrites file.

aitutils.file.isFolder(path)

returns boolean

Checks if a path is a folder.

aitutils.file.newFolder(path)

returns nothing

Creates a new folder.

aitutils.file.traverse(path, callback)

returns boolean

Walks a folder's structure and performs a callback on each item.

aitutils.file.setupFolderTree(subfolders)

returns boolean

Passed an array of paths, the function creates all folders in the array.

General

Other miscellaneous functions.

aitutils.general.dateSid(format)

returns string

Returns a numeric formatted date YYYYMMDDhhmmss.

You can override the default format by passing a string as the format parameter. The format should use Moment.js's conventions.

Logger

Simple console logger.

Types:

  • debug
  • info
  • error
  • warn
  • bot
  • shell
  • exec
  • stub
  • todo
  • sql

aitutils.logger.type("message")

returns nothing

Examples:

aitutils = require('aitutils').aitutils

aitutils.logger.debug "This is a debug message"

aitutils.logger.info "This is an info message"

aitutils.logger.error "This is an error message"

aitutils.logger.warn "This is a warn message"

aitutils.logger.bot "This is a bot message"

aitutils.logger.shell "This is a shell message"

aitutils.logger.exec "This is an exec message"

aitutils.logger.stub "This is a stub message"

aitutils.logger.todo "This is a todo message"

aitutils.logger.sql "This is an sql message"

Parse

This library is a work in progress.

XML

aitutils.xml.tidy(xml)

returns string

Tidies up XML.

aitutils.xml.reduce(obj)

returns object

Reduces an xmlLite object into something usable.

aitutils.xml.fromJadeFile(jadepath,locals)

returns string

Compiles a jade file into xml.

aitutils.xml.fromJade(jadeMarkup,locals)

returns string

Compiles a jade string into xml.

aitutils.xml.toJadeFile(xml, path)

returns nothing

Converts XML markup into a Jade file.

aitutils.xml.toJade(xml)

returns string

Converts XML markup into Jade markup.

0.1.14

10 years ago

0.1.13

10 years ago

0.1.12

10 years ago

0.1.11

10 years ago

0.1.10

10 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago