A highly motivated and driven Software Engineer with years of experience in building web applications with JavaScript technologies (Postgresql, React js, Express js and Node JS) while helping other developers through forums, open-source and articles. As a Quality Assurance engineer, I excel at implementing tests, debugging and defining corrective actions, reviewing system requirements and tracking quality assurance metrics. I am enthusiastic about solving problems innovatively. Getting creative with technology gets me excited hence my decision to be a software engineer. Skilled in directing development with a creative and performance-oriented approach. Well-organized and customer-focused with proven skills in project management and team leadership.
This file contains 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
import path from 'path'; | |
import gateway from 'express-gateway'; | |
import './user'; | |
import './music'; | |
gateway() | |
.load(path.join(__dirname, 'config')) | |
.run(); |
This file contains 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
import express from 'express'; | |
let app = express(); | |
app.get('/musics', (req,res,next) => { | |
res.status(200).send(['Jesus', 'I love to praise your name', 'My Story', 'Days of Elijah']) | |
}) | |
app.listen(8000, () => { | |
console.log('Server running on 8000') |
This file contains 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
import express from 'express'; | |
let app = express(); | |
app.get('/users', (req, res, next) => { | |
res.send(["Tony","Lisa","Michael","Ginger","Food"]) | |
}) | |
app.listen(3000, () => { | |
console.log('Server running on 3000'); |
This file contains 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
Show hidden characters
{ | |
"presets": ["@babel/preset-env"] | |
} |
This file contains 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
http: | |
port: 8080 | |
admin: | |
port: 9876 | |
host: localhost | |
apiEndpoints: | |
api: | |
host: localhost | |
paths: '/ip' | |
user: |