npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sails-hook-audittrail

v0.1.5

Published

This hook will implement audit trail for your model

Downloads

13

Readme

Sails Audit Trail

Sails Audit Trail is to provide a simple way for tracking individual value changes. It will only log value changed and not value that is not changed. This is still under development, but most won't be much changes beside reflectoring.

travis test npm version

Limitation

  • Log table is in structured format, so doesn't really benefit from NoSQL if its being used as log DB
  • Current only primary column are being tracked, means joined tabled data changed will not be log automatically
  • Currently this implemtation is being built under the assumation of SQL and not for NoSql yet

Installation

npm install sails-hook-audittrail

Configuration

Global Configuration

// config/audittrail.js
module.exports.audittrail = {
   connection: "localDatabase",
   excludedModels: [],
   tableName:'audittrail'
};
  • connection will be the connection string set in 'config/connection.js'
  • excludedModels must be a list of array of model.globalId, globalId specific in this array will not be patched
  • tableName is the tableName to be used as log table.

Local Configuration

This will be individual configuration available for individual model.

module.exports = {
	tableName: "user",
	attributes: {
		'name': {
			type:'text'
		}
	},
	auditorIgnoreAttr:['createdAt','updatedAt']
}
  • auditorIgnoreAttr must be a list of array of attributes that should be ignored when checking for data change

Database Schema

SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `audittrail`;
CREATE TABLE `audittrail` (
  `columnName` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
  `oldValue` longtext CHARACTER SET latin1,
  `newValue` longtext CHARACTER SET latin1,
  `modelID` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
  `timestamp` int(11) DEFAULT NULL,
  `foreignKey` varchar(125) CHARACTER SET latin1 DEFAULT NULL,
  `operation` varchar(15) CHARACTER SET latin1 DEFAULT NULL,
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `createdAt` datetime DEFAULT NULL,
  `updatedAt` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `search` (`modelID`,`foreignKey`,`columnName`(767))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

The sql file is in data folder

Test

npm test