KRISIS KONCEPTS

Jordan King
Full Stack Developer
Alberta, Canada
Passionate developer focused on creating usable, efficient, and scalable web applications with a modern tech stack. Specialized in Angular, TypeScript, .NET, Azure, and Firebase delivering intuitive and cost-effective solutions.
jordan@krisis.caLet's Build Something Great Together
With over 17 years of experience in full-stack development, I help businesses, and individuals build scalable, high-performance web applications, automate workflows, and optimize cloud infrastructure.
What I Offer
- Web & SaaS Development
From idea to production, using modern frameworks and best practices. - Automation & Workflow Optimization
Save time and reduce errors with smart automation. - Cloud Architecture
Scalable, efficient, and cost-effective solutions. - Performance
Make your applications faster and more reliable.
Why Work With Me?
- Over a decade of hands-on experience providing real world solutions in frontend, backend, and automation.
- Passionate about open source, future proof code, and cloud technologies.
- Focused on scalable and maintainable solutions tailored to your needs.
If you're looking for a developer, let’s talk!
Regent Signs
Regent Signs provides manufacturing, design, and installlation of real estate promotional signage. I built an online system to manage the entire process, from order to installation. The system includes a custom-built API and an Angular front end.
Open Project WebsiteEdmonton Fire Fighters
The EFFU is a firefighters union serving the city of Edmonton. They needed an online portal to manage member resources, communication as well as a custom shift managment system.
Open Project Websiteinterface Developer {
name: string;
skills: string[];
interests: string[];
};
interface TechStack {
devOps: string[];
backend: string[];
frontend: string[];
};
type ContactType = 'github' | 'email';
const techStack: TechStack = {
devOps: [
'GitLab',
'GitHub',
],
frontend: [
'Angular',
'JavaScript',
'TypeScript',
'TailwindCSS',
'Astro',
'DNN',
'SCSS',
'Markdown'
],
backend: [
'Firebase',
'Azure',
'.NET',
'C#',
'SQL',
'MySQL',
]
};
// Developer profile
const me: Developer = {
name: 'Jordan King',
skills: [
...techStack.devOps,
...techStack.backend,
...techStack.frontend
],
interests: [
'Open Source',
'Performance',
'Firefighting',
'Snowboarding'
]
};
// Contact function
const contact = (type: ContactType): string => {
switch (type) {
case 'github':
return 'https://github.com/kingjordan';
case 'email':
return 'jordan@krisis.ca';
default:
return 'Hi Five 🤚';
}
};