node.js tag

261 questions


1 answers
41 views
0
Process the value entered in the javascript pop-up window in a post manner

test.ejs<script type=text/javascript> function fn_edit_username(method, path) { method = method || post; var form = document.createElement(form); form.setAttribute(method, method); form.setA...

2 years ago

1 answers
95 views
0
Security issues for managing connection information directories

'connection': { 'host': 'localhost', 'port': '3306', 'user': 'root', 'password': 'admin', 'database': 'test' }Developing a node.js environment web app.I am using mysql in conjunction with it, but...

2 years ago

1 answers
36 views
0
nodejs easy way to get started

Basically, you are familiar with the language called JavaScriptIs there a book or method site where I can easily learn nodejs? How did other people learn it for the first time?Even if I read a book, t...

2 years ago

1 answers
44 views
0
Forwarding values in a JavaScript function in a post manner

function fn_edit_username(method, path) { method = method || post; var form = document.createElement(form); form.setAttribute(method, method); form.setAttribute(action, path); swal({ title: An in...

2 years ago

1 answers
71 views
0
Problems refreshing pages when logging in and submitting membership

Hello, I'm developing a website with node.js, and I want to develop a login and membership page.For input, the verification logic was implemented using the validation of jquery.And when you enter all ...

2 years ago

1 answers
111 views
0
Web applications implemented in two languages

You want to implement one dynamic web application using two languages: jsp, node.js (express). It's a site with community functions such as login and bulletin board.As a result of googling with the qu...

2 years ago

1 answers
43 views
0
Problems with language selection based on application when developing the web

We are developing a web app with node.js.By the way, the logic of crawling and getting data should be included.I found out that php language is much more stable than node.js.So it is said that there i...

2 years ago

1 answers
144 views
0
Developing node.js. What is the advantage of not using Sequelize (ORM) when using DB?

Developing node.js. I have two years of experience in mssql.Initially, the db part was developed using the mysql module.But I found out that it's called Sequelize.js, so I've been using it.It was a li...


1 answers
87 views
0
Converting date data taken over from client to JavaScript during web development

I need help like ciderDevelop node.js, express as ejs template.In express, render date data as ejs the variable 2016-08-14 12:03:44 of dateTime.You want to convert the dateTime value received from ejs...


1 answers
38 views
0
Are the codes written in index.js executed before event-loop?

For example, if I write a single line of code in index.js called console.log(Hello); and type node index.js in Terminal 1) Load global module (timer, console...) and so on)2) Execute the code in index...

2 years ago
« - 15 - »

© 2024 OneMinuteCode. All rights reserved.