How can make web page in termux? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can make web page in termux?

23rd Jan 2021, 2:30 PM
Javoxir Xolmirzayev
Javoxir Xolmirzayev - avatar
8 Answers
+ 2
Thank you, sir!🤝
23rd Jan 2021, 2:42 PM
Javoxir Xolmirzayev
Javoxir Xolmirzayev - avatar
+ 2
Ok. :)
23rd Jan 2021, 2:44 PM
Javoxir Xolmirzayev
Javoxir Xolmirzayev - avatar
+ 2
install python: > apt-get install python go to your web folder root: > cd www run python http server module at root of your web folder: > python -m http.server 8080 this will run a web server to port 8080 (could be what you want) for all your private network. if you want only accept localhost connections: > python -m http.server 8080 --bind 127.0.0.1 go to a browser, and type "127.0.0.1:8080" in the address bar... (at least actual firefox mobile doesn't support "localhost")
23rd Jan 2021, 7:42 PM
visph
visph - avatar
+ 1
1. install node js, 2. create a directory 3. cd directory 4. npm init //accept all the defaults 5.npm install express 6.create a index.js file 7.place the following code inside index.js in order to start a server that can serve static web pages. ------------------------- const express = require("express"); const app = express(); const port = 3000; app.use(express.static("public")) , /*app.listen(port, () => { console.log(`server listening at ${port}`); });*/ ------------------- 8. create a public folder and place your html js and css files there. 9. Start the server by following command: node index. js Now go to url, http://localhost: portNumber/ file.html To see your web page.
23rd Jan 2021, 2:39 PM
Abhay
Abhay - avatar
0
Your welcome, no need to call me sir tho! :)
23rd Jan 2021, 2:42 PM
Abhay
Abhay - avatar
0
How can i do termux as code editor.
24th Jan 2021, 11:22 AM
Javoxir Xolmirzayev
Javoxir Xolmirzayev - avatar
0
try: > nano [filename.ext] if not installed: > apt-get install nano then: > nano [filename.ext]
24th Jan 2021, 12:29 PM
visph
visph - avatar
0
$ pkg install nano $ nano file.ext{file.html}
24th Aug 2021, 8:07 AM
D’ Koder
D’ Koder - avatar