A library for NodeJS projects that makes it possible to inject dependencies into Javascript classes written in ES6.
npm install safira --save
const safira = require('safira');
class Employee{
constructor(company){
this._company = company
}
get company(){
return this._company;
}
}
safira.define(Employee);
class Company{
constructor(){
}
get name(){
return 'Company Name'
}
}
safira.define(Company);
const safira = require('safira');
let company = {name:"My Company"};
safira.defineObject(company,'company');
By default the bean will be available through the class name with the first lowercase letter.
const safira = require('safira');
let employee = safira.bean('employee');
console.log(employee.company.name); //Company Name
By default all beans built by Safira are singleton, so to change that share, specify the singleton (false) option in the class definition.
safira.define(Employee)
.singleton(false);
const safira = require('safira');
const employee1 = safira.bean('employee');
const employee2 = safira.bean('employee');
console.log(employee1 === employee2); //false
Safira allows you to get the class of a bean already declared
class Animal{
constructor(){}
get name(){
return "Safira";
}
}
safira.define(Animal);
class Cat extends safira.class('animal'){
constructor(){
super();
}
}
safira.define(Cat);
let cat = safira.bean('cat');
console.log(cat.name === 'Safira');
By default, safira will create the beans only when needed, ie when a call to safira.bean('beanName') is performed. To change this behavior and create the bean at the time of its setting do as described below.
const safira = require('safira');
class Person{
constructor(){
this._name = 'my name';
}
}
safira.define(Person)
.build()
.eager();
It is also possible to define a callback method that is invoked when the class is loaded by the safira container. By default, safira will invoke the created method if it is set, but if it is necessary to define another method as callback, the postConstruct option can be used.
class Person{
constructor(){
this._name = 'my name';
}
created(){
console.log('bean created');
}
}
class Animal{
constructor(){
this._name = 'animal name';
}
callbackMethod(){
console.log('bean created');
}
}
safira.define(Person)
.build()
.eager();
safira.define(Animal)
.postConstruct('callbackMethod')
.build()
.eager()
const safira = require('safira');
class Company{
constructor(){
}
get name(){
return 'Company Name';
}
}
safira.define(Company,'enterprise');
let company = safira.bean('enterprise');
console.log(company.name) //Company Name
Safira allows you to inject dependencies through the class constructor and properties. The beans injected by the constructor that have the same name as the class with the first lowercase letter are automatically injected, but the bean name can be customized and other values can also be injected.
const safira = require('safira');
class Company{
constructor(){
}
get name(){
return 'Company Name'
}
}
safira.define(Company);
class Employee{
constructor(employeeCompany,age,firstName){
this._employeeCompany = employeeCompany
this._age = age;
this._firstName = firstName;
}
get employeeCompany(){
return this._employeeCompany;
}
get age(){
return this._age;
}
get firstName(){
return this._firstName;
}
}
safira.define(Employee)
.constructorArg({ref:"company",name:"employeeCompany"})
.constructorArg({value:28,name:"age"})
.constructorArg({value:"Michael",name:"firstName"})
It is also possible to inject dependencies and values directly into the properties of the class.
const safira = require('safira');
class Company{
constructor(){
}
get name(){
return 'Company Name'
}
}
safira.define(Company);
class Employee{
constructor(){}
get employeeCompany(){
return this._employeeCompany;
}
get age(){
return this._age;
}
get firstName(){
return this._firstName;
}
}
safira.define(Employee)
.inject({ref:"company",name:"_employeeCompany"})
.inject({value:28,name:"_age"})
.inject({value:"Michael",name:"_firstName"});
If the ref value is equal to the class property name, the name property can be omitted.
const safira = require('safira');
class Company{
constructor(){
}
get name(){
return 'Company Name'
}
}
safira.define(Company);
class Employee{
constructor(){}
get company(){
return this._company;
}
set company(company){
this._company = company;
}
}
safira.define(Employee)
.inject({ref:"company"});
See a complete example project here