Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
constructor-utils
Advanced tools
Constructor utilities to simplify work with classes and constructors. Provides plain javascript objects to classes transformation utilities.
Its ES6 and Typescript era. Nowadays you are working with classes and constructor objects more then before. You'll need set of utils to work with them.
0.0.18 >> 0.0.20
0.0.17
0.0.16
constructor-utils/constructor-utils
to constructor-utils
package namespace.0.0.15
0.0.14
import "reflect-metadata"
from source code. Now reflect metadata should be included like any other
user's shims.0.0.13
serializer.ts
to constructor-utils
.constructor-utils
namespace.Install module:
npm install constructor-utils --save
If you are using system.js you may want to add this into map
and package
config:
{
"map": {
"constructor-utils": "node_modules/constructor-utils"
},
"packages": {
"constructor-utils": { "main": "index.js", "defaultExtension": "js" }
}
}
Use typings to install all required definition dependencies.
typings install
ES6 features are used, so you may want to install es6-shim too. You also need to install reflect-metadata package.
npm install es6-shim --save
npm install reflect-metadata --save
if you are building nodejs app, you may want to require("es6-shim");
and require("reflect-metadata")
in your app.
or if you are building web app, you man want to add <script src="path-to-es6-shim/es6-shim.js">
on your page.
or if you are building web app, you man want to add <script src="path-to-reflect-metadata-shim/reflect-metadata.js">
on your page.
Sometimes you want to transform plain javascript objects to the ES6 classes you have.
For example, if you are getting json object from your backend, some api or from files,
and after you JSON.parse
it you have a plain javascript object, not instance of class you have.
For example you have a list of users in your users.json
you are trying to load:
[{
"id": 1,
"firstName": "Johny",
"lastName": "Cage",
"age": 27
},
{
"id": 2,
"firstName": "Ismoil",
"lastName": "Somoni",
"age": 50
},
{
"id": 3,
"firstName": "Luke",
"lastName": "Dacascos",
"age": 12
}]
And you have a User
class:
export class User {
id: number;
firstName: string;
lastName: string;
age: number;
getName() {
return this.firstName + " " + this.lastName;
}
isKid() {
return this.age < 18;
}
}
You are assuming that you are downloading users of type User
from users.json
file and may want to write
following code:
fetch("users.json").then((users: User[]) => {
// here you can use users[0].id, you can also use users[0].firstName and users[0].lastName
// however you cannot user users[0].getName() or users[0].isKid() because users object is actually
// array of plain javascript objects, not instances of User object. You told compiler that `users: User[]`
// you actually lied to your compiler that you are getting instances of User object.
});
So what to do? How to have in users
array of User
objects instead of plain javascript objects? Solution is
to create new instances of User object and manually copy all properties to new objects.
Alternatives? Yes, you can use this library. Purpose of this library is to help you to map you plain javascript objects to the instances of classes you have created.
import {plainToConstructor, plainToConstructorArray} from "constructor-utils";
let users = plainToConstructor(User, userJson); // to convert user plain object a single user
let users = plainToConstructorArray(User, usersJson); // to convert user plain objects array of users
This allows to map plain javascript array usersJson
to array of User
objects.
Now you can use users[0].getName()
and users[0].isKid()
methods.
import {constructorToPlain} from "constructor-utils";
let photo = constructorToPlain(photo);
This method transforms your constructor object back to plain javascript object, that can be JSON.stringify
later.
When you are trying to transform objects that have nested objects,
its required for this component to known what type of object you are trying to transform.
Since Typescript does not have good reflection abilities yet, we must implicitly specify what type of object each property contain.
This is done using @Type
decorator.
Lets say we have an album with photos. And we are trying to convert album plain object to constructor object:
import {Type, plainToConstructor} from "constructor-utils";
export class Album {
id: number;
name: string;
@Type(() => Photo)
photos: Photo[];
}
export class Photo {
id: number;
filename: string;
}
let album = plainToConstructor(Album, albumJson);
// now album is Album object with Photo objects inside
Sometimes you want to skip some properties during transformation. This can be done using @Skip
decorator:
import {Skip} from "constructor-utils";
export class User {
id: number;
email: string;
@Skip()
password: string;
}
Now when you'll try to transform objects, password
property will be skipped and will not be included
in the resulted object.
Sometimes you have dates in your plain old javascript objects received in a string format. And you want to create a
real javascript Date objects from them. To make this component to automatically make your date strings a Date objects
simply pass Date object to the @Type
decorator:
import {Skip, Type} from "constructor-utils";
export class User {
id: number;
email: string;
@Skip()
password: string;
@Type(() => Date)
registrationDate: Date;
}
Note, that dates will be converted to strings when you'll try to convert constructor object to plain object.
Same technique can be used with Number
, String
, Boolean
primitive types when you want to convert your values
into these types.
If you have a custom array type, you can use them using @ArrayType()
decorator:
import {ArrayType} from "constructor-utils";
export class AlbumCollection extends Array<Album> {
// custom array functions ...
}
export class Photo {
id: number;
name: string;
@ArrayType(() => Album)
albums: AlbumCollection;
}
Library will handle proper transformation automatically.
Lets say you want to download users and want them automatically to be mapped to the instances of User
class.
import {plainToConstructorArray} from "constructor-utils";
this.http
.get("users.json")
.map(res => res.json())
.map(res => plainToConstructorArray(User, res))
.subscribe(users => {
// now "users" is type of User[] and each user have getName() and isKid() methods available
console.log(users);
});
You can also inject a class ConstructorUtils
as a service, and use its methods.
Take a look on samples in ./sample for more examples of usages.
FAQs
Constructor utilities to simplify work with classes and constructors. Provides plain javascript objects to classes transformation utilities.
The npm package constructor-utils receives a total of 30 weekly downloads. As such, constructor-utils popularity was classified as not popular.
We found that constructor-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.