Node.js Başlangıç
Öncelikle Node.js nedir başlayalım "Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine . Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm , is the largest ecosystem of open source libraries in the world." https://nodejs.org/en/ sitesindeki tanımıyla yukarıdaki gibi. Node.js dolayısıyla bir modüler bir javascript dili. Açık kaynak kütüphaneli geliştirilebilir ve paylaşılabilinir. Node.js i download ettiğinizde kurulumu gerçekleşir. Çalıştırması ise çok kolaydır. Basit bir "Merhaba Dünya" yapalım. Tek yapmamız gereken "node" yazıp console moda geçmek ve koşturulacak kodu girmek. Bu basit kod ile log yazdırdık. Şimdi yeni bir dosya açalım ve adını "helloworld.js" diyelim. var fs = require('fs'); // Read the contents of the file into memory. fs.readFile('test.txt', function (err, logData) { if (err) thr...