0
Crud app using Javascript
Can I make a crud application using Javascript that is connected to mysql server?
5 Respostas
+ 2
You certainly can! I myself am a full stack javascript software engineer. You'd need use a JavaScript runtime called NodeJS to run your js server and communicate with your database. Here's a brief list of the techs you'd need:
- HTML, CSS, front end JS: the website itself.
- NodeJS: runtime to run the server code.
- ExpressJS: library to create a server in JavaScript.
- Sequelize: DBMS to connect express/node with your MySQL server.
- MySQL: the database itself
0
thatstupidcoder
Yes you can make using JavaScript but you need a server side language which can get data from database and send data to client side using Ajax.
0
"Ajax is a server side language? And Is javascript easier than php ?"
AJAX is not a language. It stands for asynchronous javascript and xml.
- 1
Ajax is a server side language? And Is javascript easier than php ?
- 3
Maybe.