-
Notifications
You must be signed in to change notification settings - Fork 20
feat: NodeJS web server #350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
RandyCastr0
wants to merge
25
commits into
code-differently:main
Choose a base branch
from
RandyCastr0:Randy-Lesson15
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
39db83e
feat: new index.js
RandyCastr0 26792a0
feat: added another js file
RandyCastr0 c606af7
chore: deleted index.js and update other file
RandyCastr0 2248175
feat: added readme.html
RandyCastr0 45c569b
feat: added package.json, package-lock.json, index.js, Readme.js
RandyCastr0 050d433
chore: finished installing ts and express
RandyCastr0 307d4e4
chore: enter port in Readme.js
RandyCastr0 fa1366b
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 c0d5e79
move package files into randycastro folder
RandyCastr0 bfffdc0
chore: update readme.html
RandyCastr0 26736bc
chore: update
RandyCastr0 d178054
chore: made .js in to .ts and updated my packaage.json file
RandyCastr0 602724b
chore: update .js to .ts
RandyCastr0 f8263a4
feat: added stylesheet
RandyCastr0 27d8153
chore: update files and rearrange all the folders
RandyCastr0 509e695
chore: move folders around to keep it clean
RandyCastr0 c3d99fb
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 27a998a
chore: rearange files w/ anthony
RandyCastr0 4798930
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 99874e1
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 a55f97c
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 66d9f2a
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 424ce37
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 e77b963
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 45eb8df
Merge branch 'code-differently:main' into Randy-Lesson15
RandyCastr0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
const http = require('http') | ||
const fs = require ('fs') | ||
const { error } = require('console') | ||
const port = 3000 | ||
|
||
const server = http.createServer(function(req, res){ | ||
res.writeHead(200, { 'Content-Type' : 'text/html'}) | ||
fs.readFile ('readme.html', function (error, data) { | ||
if(error) { | ||
res.writeHead(404) | ||
res.write( 'Error File Not Found') | ||
} else { | ||
res.write (data) | ||
} | ||
res.end() | ||
}) | ||
}) | ||
|
||
server.listen(port,function(error) { | ||
if (error) { | ||
console.log('Something went wrong', error) | ||
} else { | ||
console.log('Server is listening on port' + port) | ||
} | ||
|
||
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Randy's README</title> | ||
<head> | ||
<link rel="stylesheet" href="stylesheet.css"> | ||
</head> | ||
<body> | ||
|
||
<h1>Hello my name is Randy💫</h1> | ||
|
||
<p>Hello, I'm Randy Castro, and for the past six years, I've been deeply immersed in the dynamic world of retail management, specifically at Banana Republic. However I am now looking to transition into the tech industry. My ultimate goal is to keep on learning new things and branch out to multiple streams of income and retire early.</p> | ||
|
||
<h2>What's the best way to reach me? 📞</h2> | ||
|
||
<ol> | ||
<li> | ||
<p>Email <a href="mailto:[email protected]">[email protected]</a>: For any business related questions</p> | ||
</li> | ||
<li> | ||
<p>Microsoft Team: For quick questions, updates or friendly messages</p> | ||
</li> | ||
<li> | ||
<p>Text message: For any urgent messages</p> | ||
</li> | ||
</ol> | ||
|
||
<img src="https://media.giphy.com/media/IxLeSDtUaZRmSiyCTf/giphy.gif" alt="One eternity later"> | ||
|
||
<h2>My work hours: 🗓️</h2> | ||
|
||
<p>I prefer to kickstart my day with a productive morning routine. Typically, I hit the gym around 7 am to get energized. Then, from 9 am to 5 pm, I focus on tackling my tasks and projects with full dedication and efficiency.</p> | ||
|
||
<h2>One of my goals for this year🏆</h2> | ||
|
||
<p>My goal is to successfully complete this program and secure a fulfilling career job in the tech industry. I aim to leverage this opportunity and eventually explore other avenues for personal and professional growth.</p> | ||
|
||
<h2>Family and Pets</h2> | ||
|
||
<p>In my household it is just my wife and our cat name Nori</p> | ||
|
||
|
||
<img src="https://facts.net/wp-content/uploads/2023/05/cute-grey-cat-730x487.jpeg" alt="Cute Grey Cat"> | ||
|
||
</body> | ||
</html> | ||
|
||
|
||
|
||
<h2>What I like to do in my free time?</h2> | ||
|
||
<ol> | ||
<li>Play/ Watch sports</li> | ||
<li>Try new restaurants</li> | ||
<li>Go to the beach</li> | ||
<li>Do side hustles/ learn new things</li> | ||
<li>Hang out with family</li> | ||
</ol> | ||
|
||
<img src="https://media.giphy.com/media/amg2hcfGDkKt4Q3DpF/giphy.gif" alt="Family"> | ||
|
||
</body> | ||
</html> | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"watch": ["src"], | ||
"ext": "ts", | ||
"exec": "concurrently \"npx tsc --watch\" \"ts-node src/index.ts\"" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.