https://github.com/app-generator/blog-sample-nodejs-introduction
Node JS For Beginners - Blog Article (With Samples) | AppSeed
https://github.com/app-generator/blog-sample-nodejs-introduction
appseed-sample node-js tutorial
Last synced: 4 months ago
JSON representation
Node JS For Beginners - Blog Article (With Samples) | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/blog-sample-nodejs-introduction
- Owner: app-generator
- License: mit
- Created: 2022-04-12T14:40:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-13T14:52:22.000Z (almost 4 years ago)
- Last Synced: 2025-04-06T18:12:46.401Z (10 months ago)
- Topics: appseed-sample, node-js, tutorial
- Language: HTML
- Homepage: https://blog.appseed.us/node-js-for-beginners-practical-guide/
- Size: 6.21 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Node JS For Beginners](https://blog.appseed.us/node-js-for-beginners-practical-guide/)
A simple Node.js application that returns `Hello World` when you browse `localhost:3000/api` on your local host and returns an attractive web page when you open localhost:3000 in your browser.
This `Node.js` application is also containerized and can be run with single docker command. We shall list both manual and Docker commands to run this application.
> Sample Code provided by [NodeJS For Beginners](https://blog.appseed.us/node-js-for-beginners-practical-guide/) - Provided by AppSeed
# Running the `NodeJS App` via Docker
```bash
$ docker-compose up --build
```
# Running the `NodeJS App` manually
- Clone the repository
- Open the repository in VS code or your favourite IDE
- Run `npm i`
- Run `node server.js`
Once all the commands are executed, we should see a `pixel-perfect` Boostrap 5 Design running in the browser `http://localhost:3000`:

---
[Node JS For Beginners](https://blog.appseed.us/node-js-for-beginners-practical-guide/) - Sample Code provided by [AppSeed](https://appseed.us)