Commit 46ba41b6 authored by Narumon Mokpha 's avatar Narumon Mokpha

Initial commit

parent 640ca4a0
/*const MESSAGE = "Hello World";
const rl = require('readline');
const fs = require('fs');
const io = rl.createInterface(
{
input : fs.createReadStream('package.json'),
crlfDelay:Infinity
}
);
io.on('line',(line)=>{
//พฤติกรรมของฟังก์ชัน
console.log('ผู้ใช้กรอกข้องมูลส่วนตัว : ' + line);
});
io.on('line',(line)=>{
console.log('ไม่มีบรรทัดเหลือให้อ่าน : ');
});
*/
const MESSAGE = "กรุณากรอกข้อมูล";
console.info(MESSAGE);
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin
});
rl.on('line', (line) => {
console.log(`สวัสดีคุณ: ${line}`);
process.exit(0);
});
{
"name": "student",
"version": "1.0.0",
"description": "\"display student information given nickname forpartially entered fullname\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://projectcs.sci.ubu.ac.th/chananchit/Nodejs-60-02"
},
"keywords": [
"student",
"nodejs",
"comsci",
"ubu"
],
"author": "csubu",
"license": "ISC"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment