Skip to content

Commit

Permalink
Fully Translated (#4716)
Browse files Browse the repository at this point in the history
Co-authored-by: Rich Trott <rtrott@gmail.com>
  • Loading branch information
davidkadaria and Trott authored Jul 13, 2022
1 parent 1643341 commit 04145c9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions locale/ka/docs/guides/getting-started-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: პირველი ნაბიჯები
layout: docs.hbs
---

# პირველი ნაბიჯები Node.js-ის ინსტალაციის შემდეგ

Node.js-ის ინსტალაციის შემდეგ, მოდით შევქმნათ ჩვენი პირველი ვებსერვერი.
შექმენით ფაილი სახელად `app.js` შემდეგი შიგთავსით:

```javascript
const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World');
});

server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
```

ახლა გაუშვით თქვენი ვებსერვერი ბრძანებით `node app.js`. თქვენს ბრაუზერში გახსენით
მისამართი `http://localhost:3000` და თქვენ იხილავთ შეტყობინებას „Hello World“.

Node.js-ის საწყისებთან დაკავშირებით მეტად ამომწურავი ინფორმაციისათვის იხილეთ
შემდეგი გზამკვლევი: [შესავალი Node.js-ში](https://nodejs.dev/learn).

0 comments on commit 04145c9

Please sign in to comment.