All Projects → faizahmedfarooqui → nodejs

faizahmedfarooqui / nodejs

Licence: MIT license
A Web & API app built using low-level NodeJS APIs (Implementing NodeJS without using NPM for web, api & cli)

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to nodejs

node-cli-boilerplate
🪓 Create node cli with this user friendly boilerplate
Stars: ✭ 17 (+0%)
Mutual labels:  node-cli
ClusterWS-Client-Swift
☄️ Swift Client for ClusterWS - lightweight, fast and powerful framework for building scalable WebSockets applications in Node.js.
Stars: ✭ 20 (+17.65%)
Mutual labels:  node-cluster
opsbro
Ops Best friend
Stars: ✭ 37 (+117.65%)
Mutual labels:  node-cluster
create-next-pwa
⚡️ Set up Next.js Progressive Web App with `npx create-next-pwa`
Stars: ✭ 59 (+247.06%)
Mutual labels:  node-cli
github-interact-cli
🎩 Interact with GItHub right inside your terminal
Stars: ✭ 43 (+152.94%)
Mutual labels:  node-cli
create-nodejs-ts
Starter Project for Node.js With TypeScript.
Stars: ✭ 34 (+100%)
Mutual labels:  nodejs-boilerplate
nodetomic-api
RESTful API Nodejs designed for horizontal scalability with support for cluster, based on Express, MongoDB, Redis, JWT, Socket.io, Passport.
Stars: ✭ 41 (+141.18%)
Mutual labels:  nodejs-boilerplate

Implementing NodeJS without using NPM

What is it?

A boilerplate or a sample built in NodeJS without using any NPM packages covering all (or most) of the Node's API modules

What is needed?

NodeJS (LTS) ie. >= 8.11.3

How to download & setup?

# Clone this repo using your terminal
git clone https://github.com/faizahmedfarooqui/nodejs.git;

# Go inside the repo
cd nodejs;

# Make a data directory into the root of the project
mkdir .data && cd .data;

# Create 3 more directories into the .data directory
mkdir users checks tokens;

# Go back to project's root 
cd ..;

# Make a logs directory into the root of the project
mkdir .logs;

# Goto the https directory
cd https;

# Now run the command given in the file keyGeneration.txt
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem

List of things, this repository contains:

1. RESTful API:

  • A server to listen to HTTP/HTTPS requests (View Code)
  • Deflate / GZIP Compression for HTTP/HTTPS created servers (View Code)
  • RESTful API to CRUD and many more for users, tokens & checks (View Code)
  • Router for request methods like GET, POST, PUT & DELETE (View Code)
  • Handlers(ie. controllers) to handle requests & their methods (View Code)
  • Model Base class (View Code)

2. Workers:

  • A Worker to execute things in background (View Code)

3. Logging:

  • A logging logic that logs everything into a *.log file (View Code)

4. Compress & Decompress:

  • A gzip compression logic which compresses older log file (View Code)

3. Debugging:

  • Local debug environment for the developments in each files (View Code)

4. Web App to serve routes & templates:

  • A Web App with template logic & data interpolation (View Code)

5. Web App to serve static assets:

  • Logic to serve static assets to the web-app (View Code)
  • Web routes handler for serving pages & static assets (View Code)

6. CLI Tool with Input handlers & their responders:

  • The CLI tool that runs using node's readline, events libraries & many more (View Code)
  • CLI Events handlers (View Code)
  • CLI Events responders (View Code)
---------------------------------------------------------------------------------------------------------------------------------------------------------
                     CLI Manual
---------------------------------------------------------------------------------------------------------------------------------------------------------
exit                          Kill the CLI (and the rest of the application)
man                           Show this help page
help                          Alias of the "man" command
stats                         Get statistics on the underlying operating system and resource utilization
List users                    Show a list of all the registered (undeleted) users in the system
More user info --{userId}     Show details of a specified user
List checks --up --down       Show a list of all the active checks in the system, including their state. The "--up" and "--down flags are both optional."
More check info --{checkId}   Show details of a specified check
List logs                     Show a list of all the log files available to be read (compressed only)
More log info --{fileName}    Show details of a specified log file

7. Handling error crash:

  • Server request are handled using try-catch block & now rather than app crash send 500 error response (View Code)

8. Debugger Mode:

  • For detailed information please use official NodeJS Documentation
  • To run this app in debugger mode use command node inspect index-debug.js

9. Performance Hooks:

  • Added PerformanceObserver Node Class to observe all the entries & log them out to the CLI (View Code)
  • Added Performance Mark & Measure methods to measure all the marked performance steps (View Code)
  • To see how it works, run command NODE_DEBUG=performance node index.js in your terminal

10. Cluster:

  • Added a new file with clusters, here forks are created by the count of the cpus available (View Code)
  • To see how it works, run command node index-cluster.js in your terminal

11. Child Process:

  • Using ls commands into the .logs folder from CLI commands list logs (View Code)

12. Other NodeJS Modules:

  • Use of Async Hooks module (View Code)
  • Use of HTTP/2 module in Client & Server Logic (View Code)
  • Use of NET module in Client & Server Logic (View Code)
  • Use of REPL module (View Code)
  • Use of TLS/SSL module in Client & Server Logic (View Code)
  • Use of UDP module in Client & Server Logic (View Code)
  • Use of VM module (View Code)

That's It!

How do I contribute?

Please read the CONTRIBUTING.md

Issue Template?

Bug Report

Feature Request

Custom Report

Code of Conduct

Please read the file CODE_OF_CONDUCT.md

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].