New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

tml-server

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tml-server - npm Package Compare versions

Comparing version

to
1.0.2

@@ -32,3 +32,3 @@ /**

var tml = require('tml-js');
var tml = require('tml-js');

@@ -41,3 +41,3 @@ /**

*/
var MemcacheAdapter = function(config) {
var MemcacheAdapter = function (config) {
this.config = config || {};

@@ -53,5 +53,5 @@ this.config.timeout = this.config.timeout || 3600;

name : "memcache",
read_only : false,
cached_by_source : true,
name: "memcache",
read_only: false,
cached_by_source: true,

@@ -63,3 +63,3 @@ /**

*/
create: function() {
create: function () {
var memcached = require("memcached");

@@ -76,9 +76,10 @@ return new memcached(this.config.hosts, this.config.options);

*/
fetch: function(key, def, callback) {
fetch: function (key, def, callback) {
var versionedKey = this.getVersionedKey(key);
var t0 = new Date();
callback = callback || function() {};
callback = callback || function () {
};
var self = this;
this.cache.get(versionedKey, function(err, data) {
this.cache.get(versionedKey, function (err, data) {
if (data) {

@@ -90,3 +91,3 @@ self.info("cache hit (" + Math.abs((new Date()) - t0) + " mls) " + key);

if (typeof def === "function") {
def(function(err, data) {
def(function (err, data) {
if (data) {

@@ -99,3 +100,3 @@ self.store(key, data, function () {

} else if (def) {
self.store(key, def, function(data) {
self.store(key, def, function (data) {
callback(null, data);

@@ -117,3 +118,3 @@ });

*/
store: function(key, value, callback) {
store: function (key, value, callback) {
var versionedKey = this.getVersionedKey(key);

@@ -130,3 +131,3 @@ this.info("cache store " + key);

*/
del: function(key, callback) {
del: function (key, callback) {
var versionedKey = this.getVersionedKey(key);

@@ -143,4 +144,4 @@ this.info("cache del " + key);

*/
exists: function(key, callback){
this.cache.get(this.getVersionedKey(key), function(err, data) {
exists: function (key, callback) {
this.cache.get(this.getVersionedKey(key), function (err, data) {
if (callback) callback(!(err || !data));

@@ -155,3 +156,3 @@ });

*/
clear: function(callback) {
clear: function (callback) {
if (callback) callback(null);

@@ -158,0 +159,0 @@ }

{
"name": "tml-server",
"description": "Translation Markup Language for Server-Side Integrations",
"version": "0.4.13",
"version": "1.0.2",
"author": {

@@ -38,32 +38,31 @@ "name": "Michael Berkovich",

"main": "./lib",
"scripts": {
"test": "grunt test"
},
"dependencies": {
"tml-js": "~0.4.9",
"request": "~2.61.0"
"tml-js": "~1.0.2",
"request": "~2.61.0",
"memcached": "~2.2.0",
"redis": "~0.12.1"
},
"devDependencies": {
"blanket": "~1.1.7",
"coveralls": "~2.11.4",
"grunt": "~0.4.5",
"grunt-blanket": "~0.0.8",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-uglify": "~0.7.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-coveralls": "~1.0.0",
"grunt-jsdoc": "~0.5.8",
"grunt-karma": "~0.10.1",
"grunt-mocha-test": "~0.12.7",
"karma": "~0.12.37",
"memcached": "~2.2.0",
"redis": "~0.12.1",
"redis-mock": "~0.4.9",
"mocha": "~2.3.2",
"mocha-lcov-reporter": "~0.0.1",
"object-keys": "~1.0.7",
"phantomjs": "~1.9.15",
"proxyquire": "~1.7.2",
"should": "~4.6.5",
"travis-cov": "~0.2.5"
"coveralls": "~2.13.1",
"istanbul": "~0.4.5",
"grunt": "~1.0.1",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-coveralls": "~1.0.1",
"grunt-jsdoc": "~2.1.0",
"grunt-karma": "~2.0.0",
"grunt-mocha-test": "~0.13.2",
"grunt-mocha-istanbul": "~5.0.2",
"karma": "~1.7.0",
"mocha": "~3.5.0",
"phantomjs-prebuilt": "~2.1.7",
"proxyquire": "~1.8.0",
"request": "~2.81.0",
"should": "~11.2.1",
"redis-mock": "~0.4.9"
}
}