Skip to content

Instantly share code, notes, and snippets.

View dgroup's full-sized avatar
:octocat:
Focused forward

Yurii D. dgroup

:octocat:
Focused forward
View GitHub Profile
@dgroup
dgroup / about-js-tech.md
Last active May 15, 2016 22:13
Вебминар по популярным библиотекам js
var db = require('db'); // if 'ru.js' not found, NodeJS will automatically found ru.json/ru.node/'ru' directory
var log = require('logger')(module);
function User(name){
this.name = name
}
User.prototype.hello = function (who) {
log(db.getPhrase("Hello") +' '+ who.name)
};