The problem is that this code:
const Jimp = require('Jimp');
var map = [["⬜","⬜","u","⬜","⬜","⬜"],["⬜","⬜","⬜","⬜","⬜","⬜"],
["⬜","⬜","⬜","⬜","⬜","⬜"],["⬜","⬜","⬜","⬜","⬜","⬜"],
["⬜","⬜","⬜","⬜","⬜","⬜"],["⬜","⬜","⬜","...
To add the conversion from sass to css on my node I followed the steps of this tutorial , after completing it my file package.json looks like this:
{
"name": "kimera",
"version": "0.4.4",
"description": "A Modern CSS and JS frame...
Hello everyone, I'm trying to send a node file (Client) to my Java web service using Jersey the file is received correctly using POSTMAN this is my Java code:
@POST
@Path("eliminar")
@Consumes({ MediaType.MULTIPART_FORM_DATA, ("text/plain"...
I would like to see how I can obtain a regular expression to get the result in brackets without considering the sub brackets, I will explain with an example
let txt = F[aaa(0,0,0)] otra texto F[bbb(1,1,1)]
let regExp = /F\[([^\]]+)\]/g;
let ma...
Hi friends, I am trying to print a reply by console, that receives my app in node and that I am sending from Postman , but when I print in console it gives me the object undefined .
Server Started.
Hello, I'm using Node to make a RESTFUL API. I just found out that now npm uses package-lock.json and I do not know if this changes the way you work with node ... this is my error and my code
var express = require('express')
var a...
I was trying to make a package of npm , something simple:
class Hello {
constructor(world){
this._world = world | 'world';
}
world(){
return this._world;
}
}
module.exports = Hello;
After doing tests...
I am working with React and Meteor components but since I can enter some kind of animation with jquery animate (), I have read something about 'ComponentDidMount (), by saying my components are in this way, how can I reference the DOM nodes for...
I have a model made with sequelize , I can not delete the data from the institution table, but now I have to add a day field.
I've already tried sequelize.sync but it does not modify the structure of the table.
and sequelize.sync...