10 AngularJS Developer interview questions and answers
Find and hire talent with confidence. Prepare for your next interview. The right questions can be the difference between a good and great work relationship.
What is AngularJS and what are some of its advantages?
This question might seem basic at first glance, but what you’re really doing is giving the developer a chance to show you what they know about your chosen framework. AngularJS is a powerful JavaScript-based development framework designed to create dynamic single-page applications with fewer lines of code. Some of the key advantages that you’ll want to look for in their response are listed below.
- Data binding is as easy as writing in your code.
- AngularJS was made for CRUD applications, which happen to represent the majority of web apps (excluding DOM manipulation-intensive applications like games and GUI editors).
- It separates DOM manipulation from app logic, making code modular and easy to test.
- It's a comprehensive client-side solution in that it decouples the client-side from server-side development effort.
- It saves months of development time by freeing the developer from having to write repetitive low-level DOM manipulation tasks, manually registering callbacks, and otherwise automating most AJAX application tasks.
- It’s great for providing a “desktop-like” experience to the end user.
What is the Model View Controller (MVC)?
MVC is a common design pattern used in developing software that consists of three parts: the model, view, and controller. The model is the lowest level of the pattern and is responsible for maintaining data. The view is the part of the application that is presented to the user. The controller is the code that governs all interactions between the model and the view.
What is data binding in AngularJS? How does it relate to the MVC architecture?
In most templating systems, data binding is unidirectional. When the model and template components are merged together, it creates a view. However, the developer must write code to constantly synchronize the model and the view. AngularJS uses two-way data binding, where any changes to the view will automatically update the model and vice versa. The view is more or less just a projection of the model, which greatly simplifies things from the programmer’s perspective.
Explain the concept of scope. How does scope inheritance work in AngularJS?
Scope is an object that represents the data-model of an AngularJS application—it is the glue between the view and the application controller. Scope inheritance closely mimics the DOM structure of the application. With the exception of isolated scopes created using custom directives, scopes follow prototypal inheritance. The code block below demonstrates typical scope inheritance.
<script>
var myApp = angular.module("myApp", []);
myApp.controller("fruitController", function($scope) {
$scope.message = "This is a Fruit";
$scope.type = "Fruit";
});
myApp.controller("appleController", function($scope) {
$scope.message = "This is an Apple";
});
</script>
The important thing to note in the above example is that values have been set to models in fruitController, and the message in appleController has been overridden.
Explain the difference between a factory and a service in AngularJS.
AngularJS encourages developers to store business logic and persistent data separately from controllers and scopes within an application, by providing factories and services. To understand the difference, let’s take a look at the code block below.
// The code below is a service.
app.service('MyService', function () {
this.helloWorld = function () {
console.log('Hello World');
};
});
// The code below is a factory.
app.factory('MyService', function () {
return {
helloWorld: function () {
console.log('Hello World');
};
}
});
While syntactically distinct, the above examples perform the same task of printing “Hello World” to the console. The conceptual difference you'll want to look for in the applicant’s answer however, is that a service is a constructor function while a factory is a function that must be called. This is why the service can use the “this” keyword while a factory must explicitly return the object that it creates. An even better answer would also reveal that a service is actually calling a predefined factory deep within the Angular.js file loaded into all AngularJS applications. Check out this code snippet from the Angular.js file.
// By calling service() you are also calling a predefined factory() within AngularJs
function service(name, constructor) {
return factory(name, ['$injector', function($injector) {
return $injector.instantiate(constructor);
}]);
}
Explain why there are two “destroy” events associated with the termination of a scope in AngularJS.
The first $destroy is an AngularJS event associated with components like controllers or link functions. The second is actually a jqLite/jQuery event associated with the removal of a node, which may occur without a scope teardown.
What is dependency injection and how does it work?
AngularJS was designed to highlight the power of dependency injection, a software design pattern that places an emphasis on giving components their dependencies instead of hard coding them within the component. For example, if you had a controller that needed to access a list of customers, you would store the actual list of customers in a service that can be injected into the controller instead of hardcoding the list of customers into the code of the controller itself. In AngularJS you can inject values, factories, services, providers, and constants.
What are directives? Can you explain the functions of the following directives?
ng-app
ng-model
ng-bind
ng-controller
Directives are used by AngularJS to extend the functionality of HTML by adding new attributes with the ng- prefix. The four directives listed above are some of the more important ones every AngularJS developer should know by heart.
- The ng-app directive can be placed within a element to make it the root element of an AngularJS application.
- The ng-model directive binds the value of HTML controls to application data.
- The ng-bind directive binds the content of an HTML element to application data.
- The ng-controller directive defines the controller object for an application.
Explain the role of $routeProvider in AngularJS.
The $routeProvider is used to configure roots within an AngularJS application. It can be used to link a url with a corresponding HTML page or template, and a controller (if applicable).
How experienced are you with e2e testing? Explain how e2e testing of AngularJS applications works.
End-to-end (e2e) testing is the practice of testing an application from start to finish to determine whether all the components are working together properly. If unit tests are the first line of defense against bugs within the individual components, e2e testing can be thought of as the safety net that catches issues related to integration and flow within an application. The AngularJS team built Protractor, a Node.js application that can simulate user interactions and help developers test the overall health of their AngularJS applications. It’s a good idea to ask an applicant about past experiences using Protractor to perform e2e testing on AngularJS applications.
AngularJS Developer Hiring Resources
Explore talent to hire Learn about cost factors Get a job description templateAngularJS Developers you can meet on Upwork
- $50/hr $50 hourly
Ali A.
- 5.0
- (10 jobs)
Lahore, PBAngularJS
RSpecWeb Services DevelopmentAPIDatabase DesignRuby on RailsRubyPostgreSQLAmazon Web ServicesMySQLWeb DevelopmentJavaScriptHTMLI've studied computer science. I have an experience of Web Development with the flavor of HTML, CSS, Bootstrap, JavaScript and other web development tools. I really enjoy this fact that thousands of users use applications that are developed by me. The ultimate dream is that one-day thousands will grow into millions or billions. I HAVE A DREAM! Overall if summarized my experience that would be exploring, organizing information, problem-solving and implementation. Languages are essential for expressing your programming skills overall. From EXPLORING attribute I have worked around lots of different languages. 1) Ruby 2) Typescript 3) Javascript 4) Python ( a new sensation I always wanted to explore Erlang but then I found this beauty. Python leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain.) 5) PHP In assistance to above languages below frameworks come into play, 1) Ruby on Rails 2) Laravel 3) Django Databases are the main central storage of any web application. I got experience in both SQL and NoSQL 1) Postgres 2) Mysql 3) SQLite 4) MongoDB The game never ended on the server side for me. Frontend/public facing part of the web application has been also highly evolved. Everyone wants to use Single Page Applications - The SPAs. I got experience in the following 1) React JS/TS 2) Angular JS Testing and Test Driven Development(TDD) is also an essential thing for any solid applications. I can write automated tests in following 1) RSpec 2) Capybara Deployment is essential to distribute your application out in the wild. I got experience in the following tools and technologies 1) AWS 2) Google Cloud Platforms 3) Capistrano 4) Mina 5) Nginx 6) Passenger Phusion 7) Puma 7) Unicorn - $31/hr $31 hourly
Fahad H.
- 5.0
- (2 jobs)
Vancouver, BCAngularJS
jQueryHTML5CSS 3Ionic FrameworkHTML.NET CorePythonReactReact NativeTwitter/X BootstrapJavaScriptSoftware engineer having experience with working on large scale projects. Have a can-do attitude, great time management skills, 4+ years of experience in the full SDLC. Tech Stack - Languages: Python, C#, JavaScript, TypeScript - Backend: Flask, Django, Node.js, ASP.NET MVC, Express.js - Frontend: Angular, React, HTML5, CSS3, LESS, SCSS, Bootstrap, jQuery, Ajax - Data Storage: MySQL, PostgreSQL, MongoDB, SQLite - Cloud: AWS, Azure, Docker - Architectures: Microservices, SOA, REST, Layered, n-tier QA Approach: Quality-First - Robust testing throughout development - Comprehensive unit tests with high code coverage - Thorough QA for each feature deployment - On-call system for rapid issue resolution Project Management - Slack, Jira, Confluence, Trello Need help building, managing, or maintaining web services? I offer free consultations – no strings attached! - $35/hr $35 hourly
Venkata Sai Kumar N.
- 5.0
- (4 jobs)
Bangalore, KARNATAKAAngularJS
JavaScriptCSSHTML5jQueryITILAJAXIT Service ManagementPythonJavaServiceNow Consultant with 7 years of experience, I specialize in ServiceNow development, implementation, and process design, delivering efficient and scalable solutions. ServiceNow Development Expertise -Service Portal Expert - ITSM solutions - Third-party integrations - CMDB implementation - Client-side scripting: client scripts, UI scripts, catalog client scripts, UI actions, UI policies - Server-side scripting: script includes, business rules, scheduled jobs, UI actions, ACLs - Table administration: creating/modifying tables and fields - Service catalog implementation: catalog items, variable sets, order guides, record producers - Workflow development - Email notifications and email scripts - Data import/export -Log Export Service Third-Party Integrations - JIRA - Salesforce - Microsoft SCCM - Amazon and Azure Cloud - PagerDuty - Splunk - Google Vision API - Ivanti ServiceNow Modules - Incident Management - Problem Management - Change Management - Service Catalog - Agile Development - CMDB - Discovery - Knowledge Management - Service Portal Front-End Development Proficient in web application development using HTML5, CSS3, AngularJS, and Bootstrap 3.
- $50/hr $50 hourly
Ali A.
- 5.0
- (10 jobs)
Lahore, PBAngularJS
RSpecWeb Services DevelopmentAPIDatabase DesignRuby on RailsRubyPostgreSQLAmazon Web ServicesMySQLWeb DevelopmentJavaScriptHTMLI've studied computer science. I have an experience of Web Development with the flavor of HTML, CSS, Bootstrap, JavaScript and other web development tools. I really enjoy this fact that thousands of users use applications that are developed by me. The ultimate dream is that one-day thousands will grow into millions or billions. I HAVE A DREAM! Overall if summarized my experience that would be exploring, organizing information, problem-solving and implementation. Languages are essential for expressing your programming skills overall. From EXPLORING attribute I have worked around lots of different languages. 1) Ruby 2) Typescript 3) Javascript 4) Python ( a new sensation I always wanted to explore Erlang but then I found this beauty. Python leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain.) 5) PHP In assistance to above languages below frameworks come into play, 1) Ruby on Rails 2) Laravel 3) Django Databases are the main central storage of any web application. I got experience in both SQL and NoSQL 1) Postgres 2) Mysql 3) SQLite 4) MongoDB The game never ended on the server side for me. Frontend/public facing part of the web application has been also highly evolved. Everyone wants to use Single Page Applications - The SPAs. I got experience in the following 1) React JS/TS 2) Angular JS Testing and Test Driven Development(TDD) is also an essential thing for any solid applications. I can write automated tests in following 1) RSpec 2) Capybara Deployment is essential to distribute your application out in the wild. I got experience in the following tools and technologies 1) AWS 2) Google Cloud Platforms 3) Capistrano 4) Mina 5) Nginx 6) Passenger Phusion 7) Puma 7) Unicorn - $31/hr $31 hourly
Fahad H.
- 5.0
- (2 jobs)
Vancouver, BCAngularJS
jQueryHTML5CSS 3Ionic FrameworkHTML.NET CorePythonReactReact NativeTwitter/X BootstrapJavaScriptSoftware engineer having experience with working on large scale projects. Have a can-do attitude, great time management skills, 4+ years of experience in the full SDLC. Tech Stack - Languages: Python, C#, JavaScript, TypeScript - Backend: Flask, Django, Node.js, ASP.NET MVC, Express.js - Frontend: Angular, React, HTML5, CSS3, LESS, SCSS, Bootstrap, jQuery, Ajax - Data Storage: MySQL, PostgreSQL, MongoDB, SQLite - Cloud: AWS, Azure, Docker - Architectures: Microservices, SOA, REST, Layered, n-tier QA Approach: Quality-First - Robust testing throughout development - Comprehensive unit tests with high code coverage - Thorough QA for each feature deployment - On-call system for rapid issue resolution Project Management - Slack, Jira, Confluence, Trello Need help building, managing, or maintaining web services? I offer free consultations – no strings attached! - $35/hr $35 hourly
Venkata Sai Kumar N.
- 5.0
- (4 jobs)
Bangalore, KARNATAKAAngularJS
JavaScriptCSSHTML5jQueryITILAJAXIT Service ManagementPythonJavaServiceNow Consultant with 7 years of experience, I specialize in ServiceNow development, implementation, and process design, delivering efficient and scalable solutions. ServiceNow Development Expertise -Service Portal Expert - ITSM solutions - Third-party integrations - CMDB implementation - Client-side scripting: client scripts, UI scripts, catalog client scripts, UI actions, UI policies - Server-side scripting: script includes, business rules, scheduled jobs, UI actions, ACLs - Table administration: creating/modifying tables and fields - Service catalog implementation: catalog items, variable sets, order guides, record producers - Workflow development - Email notifications and email scripts - Data import/export -Log Export Service Third-Party Integrations - JIRA - Salesforce - Microsoft SCCM - Amazon and Azure Cloud - PagerDuty - Splunk - Google Vision API - Ivanti ServiceNow Modules - Incident Management - Problem Management - Change Management - Service Catalog - Agile Development - CMDB - Discovery - Knowledge Management - Service Portal Front-End Development Proficient in web application development using HTML5, CSS3, AngularJS, and Bootstrap 3. - $40/hr $40 hourly
Muhammad Hassan N.
- 5.0
- (26 jobs)
Karachi, SINDHAngularJS
ERP SoftwareAmazon S3ElasticsearchPostgreSQLOdoo AdministrationOdoo DevelopmentNode.jsOdooPythonReactWeb Application👋 Odoo Specialist & Full-Stack Developer I design and implement tailored software solutions that streamline operations and boost efficiency. With deep expertise in Odoo, I build scalable, high-performance systems that align with your unique business needs. ⸻ Core Competencies: • Custom Module Development – Building specialized Odoo modules to enhance functionality and meet complex business requirements. • Third-Party Integrations – Seamlessly connecting Odoo with external applications to extend workflows and capabilities. • RESTful API Development – Designing robust APIs for efficient, secure data exchange between Odoo and other systems. • Single Sign-On (SSO) – Implementing secure SSO (Keycloak) to provide unified access across multiple platforms. - $60/hr $60 hourly
Andrew D.
- 5.0
- (4 jobs)
Houston, TXAngularJS
PythonLaravelPHPDjangoReactNode.jsJavaScriptC#ASP.NET MVCI have a bachelor degree in computer science and technology, then I joined in software development companies and worked as a full stack web developer for many years. These days. I want to use my challenge in various projects working with clients directly. because I am used to work with team work for company projects. That's why I am here to meet long term client that I can work for. I can help your project in all set from bug fixing to entire project development. I am fully confident for my skills. and it's enough, so I am looking for new opportunity to use my relevant skills sets at an innovative company. Feel free to ask me anything you are looking for. I will be here to answer and help to develop your project. I will always do my best to ensure project delivery. - MEAN Stack - JavaScript, PHP, SQL, HTML5/CSS3, VBA, Jquery - Python, C#, Django, Flask - Vue.js, React.JS, Angular JS, Angular 5, 6 - Node.js, Express.js , Ruby on Rails - Laravel Framework, Sympony, Bootstrap - ASP.NET, C#, ASP.NET Core, ASP.NET Web Forms, Entity framework - MySQL, SQLite, MongoDB/Mongoose (NoSQL), PostgreSQL - Git/GitHub, Bitbucket - Devops, Docker - AWS/EC2 & Azure , S3 AWS Lambda, AWS Cognito - Wordpress, Shopify, Drupal, Salesforce Thanks. - $40/hr $40 hourly
Er. Ramchandra S.
- 4.9
- (10 jobs)
Nawal, PROVINCE 4AngularJS
Raspberry PiAPIHTMLFull-Stack DevelopmentCypressPythonJavaScriptBash ProgrammingSelenium WebDriverSciPyLinux System AdministrationI’m a full stack engineer with over 2 years of experience. I have completed a Bachelor degree in computer science and engineering. I had an good experience with the Django framework on BE, react(typescript) on FE web development frameworks. I also have few experiences on other FE framework like Angular and Nexjs. I can help you build modern, responsive, single page scalable component-based web applications of your need using the best design and pattern. I can also help you maintain and redesign your existing web application by debugging and re-development. In full stack, I have following expertise, 🚀 Django 🚀 React, NextJs, Angular 🚀 Cypress and Selenium 🚀 Web application re-design and maintenance Beside, I love doing python scripying. I can help you develop web automation scripts, web scraping tools, data manipulation and cleaning tools, any automation tools of your requirement. In python, I have following expertise, 🚀 Python 3+ 🚀 Regex 🚀 Numpy and Pandas 🚀 Matplotlib 🚀 xlsxwriter 🚀 Pytesseract Besides all these, I am very collaborative, well organized, responsive, and a good communicator. - $50/hr $50 hourly
Amandeep S.
- 5.0
- (12 jobs)
Brampton, ONAngularJS
AWS CodeDeployAWS Systems ManagerAndroid App DevelopmentIonic FrameworkSelenium WebDriverAndroid AppiOS DevelopmentReact NativeAWS LambdaPythonGolangAmazon DynamoDBReactNode.jsSQLI have extensive experience working with various technologies in the field of software development. My expertise includes SaaS-based application development using Angular JS, React JS, Native iOS-Android, Hybrid Apps, HTML, CSS, and server-side development on AWS and Azure, with a strong emphasis on Bootstrap and Angular. Some of the applications I've worked on are currently live and functioning smoothly. I possess a wealth of experience in both client-side and server-side development, always staying eager to explore and adapt to new technologies. My past projects have involved integrating social media technologies, Google Maps, and real-time socket programming for applications such as chat and dating apps. Here's an overview of my technical skills: Programming: Swift, Java, React JS, Angular JS, Node JS, MVC, AJAX, Web Services, SQL Reporting. Database: MS SQL 2005, MS SQL 2008, MS SQL 2008R2, MS SQL 2014, MS SQL 2017, MS SQL 2018, SQL Server Compact, MySQL, Azure, Stored Procedures, Functions, Triggers, Cursors, Bulk Insertion. Web Technologies: HTML, CSS, JavaScript, jQuery, jQuery UI, Bootstrap, JSON, Angular JS, React JS. Application Tools: MS Visual Studio 2005/2008/2010/2012/2017, IIS, Apache. API Integration: Google Maps API & Google Analytics, Facebook, Google Places API, Twitter, LinkedIn, Amazon Web Services, Azure, Twilio, ZenDesk, Sendgrid. Backend: NodeJS, PHP. Payment Gateway: PayPal, Stripe, RazorPay. Source Control: GitHub, BitBucket, GitLab. Design: Wireframe, Zeplin, Photoshop, Adobe Photoshop, Mock-ups. Thank you for considering my qualifications. - $45/hr $45 hourly
Rajkamal S.
- 4.7
- (10 jobs)
Queens County, NYAngularJS
Graphic DesignCSSWeb DesignHTMLStripeAgile Software DevelopmentIn-App PurchasesChat & Messaging SoftwareCameraAndroidTwilio APINode.jsJavaFirebaseWith over 6 years of progressive experience as a Mobile App developer, I have an extensive understanding of business processes across various industries. I excel at solving complex problems and building secure, high-performance solutions tailored to unique business needs. I excel in Swift, Kotlin, React Native, and Flutter for building state-of-the-art solutions. I have worked comprehensively in healthcare, e-commerce, on-demand services, and many more. Understanding Your Business I believe that a one-size-fits-all approach doesn’t lead to successful outcomes as every business is unique. I conduct a thorough discovery phase for each project to better understand your specific goals, challenges, and deliverables. By ensuring we are aligned from the start, I can develop applications that are precisely tailored to your needs, resulting in a 100% success rate. UI/UX I emphasize on making seamless UI/UX designs. While creating UI/UX I prioritize user-friendly design principles to ensure that the app is not only visually appealing but also easy to navigate. User experience has always been my top priority. My portfolio includes more than 30 apps for both the Apple App Store and Google Play store and most of them are with 100,000+ traffic a day. The approach I follow: ↳ Requirement Analysis ↳ Designing ↳ Development ↳ QA Testing ↳ Deployment ↳ Maintenance Technical Expertise: iOS: Swift/Objective C Android: Java/Kotlin Cross-platform: Flutter (Dart) React Native & Hybrid: HTML5, CSS3, Java Script Design: Figma, Sketch, Invision Cloud: Firebase, AWS Databases: Realm, Firestore, SQLite IDEs: Android Studio, Xcode Version Control: GitHub, Bitbucket Architectures: MVVM, MVP, Clean Code Project Management: Airtable, Asana, Trello, Basecamp Client-Centric Approach My main priority is long-term client relationships and I firmly believe in providing transparent communication throughout the project lifecycle. I focus on delivering measurable results that will help you in achieving your goals. Let’s Build Something Great Together If you are looking to build a new mobile app, revamp an already existing one, or have some bugs which are not being resolved, look no further. With my experience and expertise, you can sit back and relax while I turn your vision into reality. Let's Build Something Great Together! -Raj - $40/hr $40 hourly
Firas A.
- 4.5
- (18 jobs)
Boston, MAAngularJS
UbuntuApache HTTP ServerGoogle Cloud PlatformWordPressNGINXVue.jsLaravelFlutterReactMySQLAmazon Web ServicesNode.jsIonic FrameworkPHPHey! My name is Firas, I'm a developer specialized in full stack web and mobile app development. My core skills include: ✅ Programming Language: PHP, Python, NodeJS. ✅ Frameworks: Laravel, ExpressJS, Django, Flask. ✅ CMS: Wordpress, Drupal, Concrete, October. ✅ Frontend: Vue, React, CSS, HTML. ✅ Mobile: Flutter, React Native, Ionic. ✅ Cloud: AWS, Azure, GCP, Linode, DigitalOcean. ✅ Linux, Apache, NGINX. ✅ Version control: GIT. Please feel free to contact me for any question ❤️ - $95/hr $95 hourly
Andres M.
- 5.0
- (22 jobs)
San Diego, CAAngularJS
SendGridAzure App ServiceDatabase DesignDatabase ArchitectureStripeSCSSTwilio APIAPI IntegrationJavaScriptCSSBootstrapWeb ApplicationAngularMySQLHi, my name is Andres. I am a full stack developer with over 10 years of experience building web applications from the ground up. I specialize in data driven AngularJS and Angular applications with NodeJS backends. If you are passionate about your vision, let's talk, I will be happy to help make it a reality. - $40/hr $40 hourly
Daniel M.
- 5.0
- (7 jobs)
Valera, TRUJILLOAngularJS
React NativeMobile App DevelopmentPythonASP.NETDjangoDrupalJavaScriptReactI have been developing web and mobile apps for the past 7 years and have expertise in serverless architecture, full stack development, IoT projects My skills: 1. Web Development - Front-end React(Redux,Redux-Saga,RxJS), Vue, Angular 4/5/6, AngularJS - Back-end Python/Django/Flask, PHP/Laravel/CodeIgniter, Node.js, ASP.NET MySQL, PostgreSQL, MongoDB, Redis, DynamoDB - Cloud Services Serverless Architecture, AWS, Firebase, Azure, Google Cloud, DigitalOcean 2. Mobile Development - Native Android and iOS - React Native, Unity I am able to offer competitive prices and add value to the projects with my experience . I can dedicate more than 40hrs/week to your project and working hours are flexible. - $40/hr $40 hourly
Roman S.
- 5.0
- (2 jobs)
Ternopil, TERNOPIL OBLASTAngularJS
Google APIsIonic FrameworkVue.jsBootstrapDjangoReactTypeScriptWordPressNode.jsI am a passionate Full - Stack developer with 8+ years of experience in front - end and back - end development. I am experienced with creating effective pixel-perfect user interfaces and maintainable code. If you are looking for a highly motivated, self taught developer, I would be happy to discuss the details of your project. I specialize in HTML, CSS, Bootstrap, Javascript, AngularJS, vue.js, Wordpress, PHP, Laravel, Node.js, React.js, Ruby on Rails, Private Blockchain, Bitcoin trading bot, etc. My goal is to be a dedicated contractor for clients who are looking for quality work and to build a long lasting relationship. I am ready to work on your assigned project and can deliver great results for you. I can offer you the following skills: Programming Languages - HTML5 - CSS3 - Typescript - Javascript - PHP - SQL - C#, C++, C - Java - Ruby - Python Frameworks - Wordpress - Laravel, Symfoney3, CakePHP3 - Ruby on Rails - ASP.NET Core2, ASP.NET MVC5, LINQ, Entity Framework - Django - Angular2, 4, 5, 6 - React/Redux, Next.js - Vue/Vuex - Node/Express - Bootstrap - jQuery, jQueryUI Tools - SCSS - Gulp - Git Other - Nginx Web Server - AWS -Ubuntu 16.04 - API Integrations (REST & SOAP) - Google Maps API - Payment Gateway API Database - MySQL - MSSQL - PostgreSQL - MongoDB - DynamoDB - $50/hr $50 hourly
Ankit G.
- 5.0
- (13 jobs)
Toronto, ONAngularJS
FirebaseAngular 6APIAngular MaterialMongoDBReduxExpressJSBootstrapTypeScriptNode.jsReactJavaScriptAngularI am Passionate Full Stack developer. I have worked with following databases: Firebase, MySQL, MongoDB, PostgreSQL, SQL server, Dynamo DB. I have 7+ years of web application development experience I am 100% dedicated and addicted to client satisfaction and will do whatever it takes to make that happen. I see challenges as opportunities and constantly looking to learn new tricks and tips that will improve myself and my knowledge. My commitment my client (and to myself) on every project I will: - ensure I understand requirements - estimate accurately - communicate well and regularly - produce quality code - do so quickly and efficiently - finish on time In ERNA (ExpressJS, ReactJS, NodeJS and AngularJS) i can create web applications and Web API also customize and manage existing application built on this framework. I am always willing to learn something new and will fully familiarize myself with the product in order to provide the best possible support to customers. - $40/hr $40 hourly
Denis N.
- 5.0
- (5 jobs)
Skopje, KARPOŠAngularJS
MongoDBMySQLAmazon Web Servicesstyled-componentsFirebaseReactNode.jsTypeScriptAn energetic and creative Software Engineer with a lot of expertise and much experience in the web field, who is able to work alongside other professionals/developers in creating web apps to the very highest standards and quality. I've been building web applications 6 years and i have a high awareness of industry issues and trends, particularly in regard to the architectural models, development approaches, best practices, emerging technologies & techniques, etc. - $40/hr $40 hourly
Abhishek C.
- 5.0
- (8 jobs)
New Delhi, DELHIAngularJS
ShopifyMEAN Stack AdministrationLaravelAPI IntegrationAngularPHPJavaScriptWordPressNode.jsCodeIgniterReactGitAmazon Web ServicesI have been working with Web technologies for about 8 years, with a professional experience of 7 years. I have hands-on knowledge about PHP, JAVASCRIPT and MySQL. I have a fresh perspective so I am pretty good at designing something new from scratch. I am Experienced with AWS and Google cloud deployment of projects. I am also fluent in English, so there will not be any communication loss which is often a key point of any project. I am also a good team player so I can collaborate with other freelancers as well. - $45/hr $45 hourly
Gurmej S.
- 5.0
- (18 jobs)
Barnala, PUNJABAngularJS
Twitter/X BootstrapjQueryGoogle AnalyticsPSD to WordPressReactLaravelElementorSassAdobe PhotoshopHTML5JavaScriptWordPressCSS 3LeSS FrameworkHi there, and welcome! 🚀 I'm a Top Rated Plus Full Stack Developer with 10+ years of hands-on experience in WordPress, React, Angular, PHP, and AI/Chatbot integrations. I specialize in building fast, scalable, and smart web applications that help businesses automate, grow, and convert better. 💡 Whether you're looking for: A custom WordPress site with Elementor or ACF A modern React / Angular frontend with seamless UX An OpenAI chatbot for automating customer support A Figma-to-code website that’s pixel-perfect on all screens — I’ve got you covered! 🔧 My Core Expertise Includes: ✅ WordPress (Custom Themes, WooCommerce, Elementor, ACF) ✅ React, Angular, JavaScript (Next.js, Vue, Node.js) ✅ PHP, Laravel, CodeIgniter ✅ AI & Chatbot Integration (ChatGPT, Dialogflow, OpenAI APIs) ✅ HTML5, CSS3, SCSS, Tailwind CSS, Bootstrap ✅ Shopify, Joomla, Magento ✅ Sketch/Figma to HTML/CSS ✅ Adobe XD, Photoshop, Illustrator ✅ Git, GitHub, GitLab 🎯 I'm not just a developer — I'm your tech partner focused on: ✨ Clean, high-performing code ⏱️ Reliable delivery 💬 Effective, fast communication Let’s build something smart, scalable, and stunning. 📩 Message me today to get started! Thanks & best regards, Gurmej Singh - $50/hr $50 hourly
Ivan R.
- 5.0
- (23 jobs)
Vilnius, VLAngularJS
Business with 100-999 EmployeesApache TomcatApache KafkaSpring CloudSoftware Architecture & DesignSpring FrameworkSpring BootBusiness with 10-99 EmployeesSpring DataMongoDBJavaSQLHibernateKotlinBusiness with 1-9 EmployeesPostgreSQLI'm a senior Java developer with 13+ years of backend development, team lead and architect. I have been working on a full product development cycle in big companies and startups. Can help with architecture and technology consulting. I have experience working with industry leaders in various sectors, including fintech (backend for mobile apps of European banks, payment platforms for the African market), travel (backend and mobile app for a ski resort, airline ticketing system), and oil (microservices architecture for a mobile app), media (CMS for newspaper company from USA), among others - Backend: Java, Kotlin, Spring (Spring Data, Spring Boot, Spring MVC, Spring Security, Spring Cloud), Hibernate, JPA, Jooq, JDBC - DB: PostgreSQL, Mongo DB, Oracle DB, MySQL, Cassandra, Vector - API: Web and mobile API, REST, SOAP, gRPC - Delivery | Updates | Support: Bitbucket, Gitlab, Github, Railway, Jenkins, Fastlane pipelines - Integrating with external services: Facebook, YouTube, SoundCloud, Branch.io, Intercom, Mapbox, OSM, Acquiring, BigQuery, Telegram and Slack bots, Apple Wallet, Google Wallet, OpenAI (Chat GPT, Vector Database, Embeddings, Assistants, Agents), ElasticSearch, etc. - $55/hr $55 hourly
Ruben F.
- 5.0
- (7 jobs)
San Lorenzo, CENTRALAngularJS
Angular 6Ionic FrameworkAngular 2React NativeNode.jsReactVue.jsEJBJavaScriptJavaMyBatisI'm a Software Engineer with experience in development of Mobile and Web Applications. I value the quality of my work and the buyer's satisfaction. I have experience with various technologies such as VueJS, ReactJS, Java EJB, AngularJS, Angular 2/5, Ionic 1/3, Django, React Native, Apache Spark, Apache Hadoop, and others. - $40/hr $40 hourly
Muhammad T.
- 5.0
- (11 jobs)
Lahore, PUNJABAngularJS
JavaScriptPHPQuasar FrameworkKubernetesCSSHTML5CSS 3VuexBootstrapLaravelDocker ComposeVue.jsCore PHPCI/CDEcommerceHi, I don’t just write code, I help teams bring ideas to life and keep their systems running smoothly, whether that means building out the front end, writing APIs, setting up cloud infrastructure, or automating deployments. I work across the stack and across environments, and I’m comfortable jumping into new or existing projects at any stage. Here's what I bring to the table: Frontend Development: React, Next.js, Vue, Angular, TypeScript, Tailwind, Bootstrap, HTML/CSS, Sass Backend Development: Node.js, Express, NestJS, Django, Flask, Laravel, Spring Boot, Go Databases: PostgreSQL, MySQL, MongoDB, Redis, Firebase, DynamoDB API Development: REST, GraphQL, WebSockets Cloud Platforms: AWS (EC2, Lambda, S3, RDS, ECS, EKS), GCP, Azure, DigitalOcean, Heroku, Vercel, Netlify CI/CD & Automation: GitHub Actions, GitLab CI/CD, Jenkins, CircleCI, Bitbucket Pipelines Containers & Orchestration: Docker, Docker Compose, Kubernetes, Helm Infrastructure as Code: Terraform, CloudFormation, Ansible, Pulumi Monitoring & Logging: Prometheus, Grafana, ELK Stack, Sentry, Datadog, New Relic Version Control & Team Tools: Git, GitHub, GitLab, Bitbucket, Jira, Trello, Slack I’ve worked with everything from early-stage MVPs to large-scale systems with microservices and distributed architecture. I love solving problems, improving performance, and helping teams move faster without breaking things. If you need someone who can build, debug, automate, and scale, I can help. - $60/hr $60 hourly
Viet V.
- 5.0
- (9 jobs)
Ho Chi Minh, HO CHI MINH CITYAngularJS
Tailwind CSSBootstrapVue.jsSCSSCSS 3Next.jsAngularExpressJSJavaScriptMongoDBNode.jsReactHTML5Responsive DesignMy technical skills is frontend focused, from static or dynamic web pages to single page applications. I have been working with Javascript and frontend for 7 years now and have a good grasp on how to solve any programming task with it. I have solid knowledge of HTML and CSS and know how to optimize Core Web Vitals. I've kept up with it since I've started first writing basic XHTML pages. I can make the right decisions on what framework can scale and on what library should be used to solve a demand. I do write a lot of custom code, so I do love challenges. I'm a big fan of React and it's ecosystem (webpack, redux, styled components, MUI, Nextjs, etc). The ecosystem can fit in any application no matter how small or big it is. I can also do Angular and VueJs with couple years of experience. Please check my skills for more information. - Deep knowledge of Frontend Frameworks: ReactJS, Angular, VueJS - Improve performance for website to get high score LCP, FCP, CLS on Google PageSpeed Insight, Google Search Console. ✓ NextJS / ReactJS / Angular / Angular Universal / Vue ✓ NodeJS / Express ✓ Webpack ✓ Tailwind/Bootstrap ✓ Database: MongoDB/Redis ✓ Docker ✓ Amazone Web Services ✓ GIT Thank you for visiting my profile! I will be glad to hear any suggestions. - $35/hr $35 hourly
Nikolay V.
- 5.0
- (4 jobs)
Odesa, ODESSA OBLASTAngularJS
MongoDBTypeScriptNode.jsSymfonyExpressJSSQLIonic FrameworkFirebaseJavaScriptHello, I am a Senior 𝐅𝐮𝐥𝐥 𝐒𝐭𝐚𝐜𝐤 (𝐀𝐧𝐠𝐮𝐥𝐚𝐫 & 𝐍𝐨𝐝𝐞) and 𝐈𝐨𝐧𝐢𝐜 developer dealing with the development of software 𝐚𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬 𝐨𝐟 𝐚𝐧𝐲 𝐬𝐜𝐚𝐥𝐞. I am highly experienced in all Angular framework versions - 𝐀𝐧𝐠𝐮𝐥𝐚𝐫.𝐣𝐬, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫𝟐 𝐭𝐨 𝐀𝐧𝐠𝐮𝐥𝐚𝐫𝟗 - and have been building front end components for businesses and individuals for about 𝟓 𝐲𝐞𝐚𝐫𝐬. My Angular expertise is augmented by quite a solid experience in 𝐜𝐫𝐞𝐚𝐭𝐢𝐧𝐠 𝐛𝐚𝐜𝐤 𝐞𝐧𝐝𝐬 for the software solutions using 𝐍𝐨𝐝𝐞.𝐣𝐬 𝐚𝐧𝐝 𝐅𝐢𝐫𝐞𝐛𝐚𝐬𝐞. My 𝐭𝐞𝐜𝐡𝐧𝐢𝐜𝐚𝐥 𝐛𝐚𝐜𝐤𝐠𝐫𝐨𝐮𝐧𝐝 includes: 𝐎𝐯𝐞𝐫 𝟓 𝐲𝐞𝐚𝐫𝐬 of professional IT experience as a 𝐓𝐞𝐚𝐦 𝐋𝐞𝐚𝐝 and 𝐅𝐮𝐥𝐥 𝐒𝐭𝐚𝐜𝐤 𝐉𝐚𝐯𝐚𝐒𝐜𝐫𝐢𝐩𝐭 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫 having expertise in creating 𝐌𝐄𝐀𝐍 𝐒𝐭𝐚𝐜𝐤-𝐛𝐚𝐬𝐞𝐝 web applications. ⁃ Strong skills in 𝐀𝐧𝐠𝐮𝐥𝐚𝐫.𝐣𝐬, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫𝟐-𝟗 and associated libraries/tools. ⁃ Strong experience in developing the application in 𝐍𝐨𝐝𝐞𝐉𝐒 𝐰𝐢𝐭𝐡 𝐭𝐡𝐞 𝐮𝐬𝐚𝐠𝐞 𝐨𝐟 𝐄𝐱𝐩𝐫𝐞𝐬𝐬.𝐣𝐬 frameworks. ⁃ Developed enterprise-level applications utilizing 𝐗𝐌𝐋, 𝐉𝐒𝐎𝐍, 𝐑𝐞𝐬𝐭𝐟𝐮𝐥-𝐛𝐚𝐬𝐞𝐝 𝐰𝐞𝐛 𝐬𝐞𝐫𝐯𝐢𝐜𝐞𝐬, 𝐉𝐚𝐯𝐚𝐒𝐜𝐫𝐢𝐩𝐭, 𝐇𝐓𝐌𝐋, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫.𝐣𝐬, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫 𝟐+ frameworks such as 𝐁𝐨𝐨𝐭𝐬𝐭𝐫𝐚𝐩, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫 𝐌𝐚𝐭𝐞𝐫𝐢𝐚𝐥, etc. - Experience in writing 𝐔𝐧𝐢𝐭 𝐭𝐞𝐬𝐭𝐬 for Angular/Node.js with 𝐌𝐨𝐜𝐡𝐚, 𝐉𝐞𝐬𝐭, 𝐂𝐡𝐚𝐢. ⁃ Strong experience in implementing web applications with 𝐌𝐕𝐂 𝐚𝐫𝐜𝐡𝐢𝐭𝐞𝐜𝐭𝐮𝐫𝐞 using 𝐌𝐄𝐀𝐍 𝐒𝐭𝐚𝐜𝐤𝐬 technologies (𝐌𝐨𝐧𝐠𝐨𝐃𝐁, 𝐄𝐱𝐩𝐫𝐞𝐬𝐬.𝐣𝐬, 𝐀𝐧𝐠𝐮𝐥𝐚𝐫𝐉𝐒, 𝐍𝐨𝐝𝐞𝐉𝐒) to create comprehensive web applications from the database, back-end server to front-end web pages. - Experience in working with 𝐌𝐨𝐧𝐠𝐨𝐃𝐁, 𝐌𝐲𝐒𝐐𝐋. ⁃ Extensive experience in 𝐔𝐈 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐦𝐞𝐧𝐭, 𝐖𝐞𝐛 𝐔𝐈 𝐚𝐧𝐚𝐥𝐲𝐬𝐢𝐬, 𝐖𝐞𝐛 𝐝𝐞𝐬𝐢𝐠𝐧, 𝐜𝐨𝐝𝐢𝐧𝐠, 𝐭𝐞𝐬𝐭𝐢𝐧𝐠, 𝐢𝐦𝐩𝐥𝐞𝐦𝐞𝐧𝐭𝐚𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝐬𝐮𝐩𝐩𝐨𝐫𝐭. ⁃ Experience with C#, PHP (Symfony framework), Coffeescript, Typescript. ⁃ Hands-on experience in 𝐯𝐚𝐫𝐢𝐨𝐮𝐬 𝐝𝐨𝐦𝐚𝐢𝐧𝐬 like Banking, eCommerce and Telecommunication. ⁃ Strong experience in 𝐢𝐦𝐩𝐥𝐞𝐦𝐞𝐧𝐭𝐢𝐧𝐠 𝐇𝐢𝐠𝐡𝐥𝐨𝐚𝐝 𝐰𝐞𝐛 𝐚𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬. ⁃ Conversant with all phases of 𝐒𝐨𝐟𝐭𝐰𝐚𝐫𝐞 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐦𝐞𝐧𝐭 𝐋𝐢𝐟𝐞𝐜𝐲𝐜𝐥𝐞 (𝐒𝐃𝐋𝐂) involving analysis, design, development, testing, implementation and maintenance. ⁃ Possess strong 𝐚𝐧𝐚𝐥𝐲𝐭𝐢𝐜𝐚𝐥 𝐬𝐤𝐢𝐥𝐥𝐬 with hands-on experience in programming and 𝐩𝐫𝐨𝐛𝐥𝐞𝐦-𝐬𝐨𝐥𝐯𝐢𝐧𝐠. ⁃ Strong 𝐢𝐧𝐭𝐞𝐫𝐩𝐞𝐫𝐬𝐨𝐧𝐚𝐥 𝐬𝐤𝐢𝐥𝐥𝐬, proven 𝐥𝐞𝐚𝐝𝐞𝐫𝐬𝐡𝐢𝐩 qualities. ⁃ Huge experience working in remote and in-house teams using 𝐒𝐂𝐑𝐔𝐌, 𝐊𝐚𝐧𝐛𝐚𝐧 𝐚𝐧𝐝 𝐨𝐭𝐡𝐞𝐫 𝐀𝐠𝐢𝐥𝐞 𝐦𝐞𝐭𝐡𝐨𝐝𝐨𝐥𝐨𝐠𝐢𝐞𝐬. Looking forward to working with you. - $65/hr $65 hourly
Steven N.
- 4.9
- (5 jobs)
San Leandro, CAAngularJS
ShopifyCMS DevelopmentJavaScriptPHPWordPressGoogle AnalyticsSearch Engine OptimizationReactResponsive DesignI am the founder of Collide Digital, a digital agency that delivers end-to-end digital solutions, from web development and design to online advertising and e-commerce. I am a Full Stack Engineer based in San Francisco and specialize in web development using PHP(Laravel), JavaScript frameworks and libraries like React, Angular, Node and different CMS like WordPress, Shopify, HubSpot, Joomla, and Drupal and Magento. I have 6 years of experience as Full Stack Engineer, SEO and Analytics specialist. I have worked with several startups and corporate companies here in San Francisco which has helped me build experience and a strong background in building data-heavy websites, handling marketing campaigns with a strong focus on SEO, and conversion funnel optimization. I have worked both in various industries ranging from CPG to SaaS giving me exposure to wide range of clients, products, and projects. I have developed and managed websites and handled successful marketing campaigns for clients both local and international and in various sectors such as Hospitality, IT, Healthcare, Technology, Automobile, Finance, Housing and Retail. I am open to work on new and existing projects. I believe in transparency, clear communication and timely approvals and feedbacks to reduce the rework. What I Do: • Design and Develop Websites o PHP, Laravel, JavaScript, React, Node, WordPress, Squarespace, WooCommerce, Shopify, Joomla, Drupal, HTML, CSS, jQuery, AJAX • Web Accessibility o WCAG 2.0, JAWS, ARIA, Level Access, ADA Complaince • Website Analysis and Audits o Performance, Usability, SEO, accessibility, Security • SEO o Technical audits o On-Page and Off-Page SEO Techniques o Keyword Analysis and Mapping o Handling sitemaps, robots.txt and broken links o Building link profile using internal and relevant backlinks o Setup Search Console o Analyze Search Console and Fix potential issues • Analytics o Setting up Analytics account and implementing tracking o Implementing Goal Tracking o Conversion Funnel Optimization o Analytics Reporting • Tools o Google Analytics, Search Console, Advanced MS Excel, Zeplin, Figma, GIT, Jira, Trello If you're interested in working together or have any questions, feel free to reach out and we can set up a time to chat. - $75/hr $75 hourly
William L.
- 5.0
- (1 job)
Camp Meeker, CAAngularJS
JiraGitHubGoogle Cloud PlatformFirebase Cloud FirestoreKubernetesPostgreSQLRuby on RailsI am a full stack developer with over 10 years of working and managing software projects independently. I have a keen understanding for frameworks, design patterns, and data modeling that enables me to develop clean, testable, and understandable code. I've developed projects for the music, wine, retail, hotel/travel, and entertainment industries. I am reliable and focussed on meeting deadlines. My primary languages are Ruby and Javascript working primarily with Rails, Typescript, React, and AngularJS. I've worked in Heroku, AWS, and GCS deployment environments and am fluent in writing SQL queries. I've worked in Agile environments and am comfortable with using Git, Jira, Confluence, DataDog, etc.. - $40/hr $40 hourly
Vitaliy M.
- 5.0
- (9 jobs)
Krakow, LESSER POLAND VOIVODESHIPAngularJS
JestSelenium WebDriverFirebasejQueryExpressJSJavaScriptTypeScriptHTML5Kendo UINode.jsReactMongoDBCSS 3More than 7 years of experience in website applications, A person with a mixed type of thinking, inquisitive, flexible, devoted, enthusiastic and stress-resistant, responsible for taken obligations and persevering in achievement of setting tasks, capable to analyze great volume of information. I get on well with people and keep in touch with them quickly. Front-end experience: - Angular (All versions) - React - Knockout - Backbone - Sass - Less - CSS3 - HTML5 - JQuery - JavaScript - TypeScript - Responsive layouts - Karma, Jasmine - Cypress.io - GraphQl - Web scraping Back-end experience: - Databases: MongoDB, Firebase - Business logic, Web page rendering, RESTful APIs: Node.js - $45/hr $45 hourly
Wesley E.
- 4.8
- (5 jobs)
Belleville, MIAngularJS
Embedded LinuxLinuxArduinoInternet of ThingsFront-End DevelopmentFirmware ProgrammingWeb DevelopmentExperience in Embedded software engineering working with Arduino, ESP32, STM32, Raspberry Pi, and Xbee modems. I can provide low-cost IOT applications for hobby usage that run on a local server, or production applications that run in the cloud (AWS). If you would like to take your project to the next level and include WiFi, wireless, or cellular communication, feel free to reach out! Thanks. - $45/hr $45 hourly
Alexander G.
- 5.0
- (10 jobs)
Astana, ASTAngularJS
Node.jsNext.jsReactNuxt.jsVue.jsAngularTypeScriptJavaScriptRESTful APIMySQLPostgreSQLSymfonyLaravelPHPI am a Full Stack Developer who run a team of talented professionals with 10 years of experience in Web Development specialized in PHP, Laravel, Symfony, Angular, React.js, Vue.js. Our company General Soft is focused on the professional development of: - Web Applications; - Web Sites, Services and Portals; - CRM; - ERP; - SAAS. Our key services: - Web Development; - Web Services Development; - Business Analysis and Creative support; - Technical support and consulting. Our technologies stack: ⭐️ PHP Frameworks: Laravel, Symfony, CodeIgniter, Kohana; ⭐️ Front-end Frameworks: Angular, AngularJS, Vue.js, React, Bootstrap, UIkit, jQuery, jQuery UI; ⭐️ Databases: MySQL, PostgreSQL, MongoDB, Redis; ⭐️ CMS: WP, Joomla, Drupal, Bitrix; ⭐️ And: TypeScript, Coffee, Sass, Less. We have worked as PHP developers, Front-end, Back-end Developers and Full-stack Developers. Usually our Clients find us by following keywords: Front-end, Back-end Developers, Full-stack Developers, Front-end Developer, Back-end Developer, Full-stack Developer, Frontend Developer, Backend Developer, Front end Developer, Back end Developer, Full stack Developer PHP, PHP developer, Laravel Developer, PHP development, PHP framework, Laravel, Symfony, CodeIgniter, Kohana, Angular, AngularJS, Vue.js, React, Bootstrap, Python, UIkit, jQuery, jQuery UI, MySQL, PostgreSQL, MongoDB, Redis, WP, Joomla, Drupal, Bitrix, TypeScript, Coffee, Sass, Less, RESTFUL API, CRM, ERP, SAAS, Git, SVN, Unit testing, Jira, Redmine - $35/hr $35 hourly
Kundan S.
- 4.9
- (9 jobs)
Jaipur, RAJASTHANAngularJS
React NativeSwiftAndroidiOSFlutterMongoDBJavaNode.jsReactTypeScript✅TOPTAL-certified full stack developer (Top 3% globally) with 12+ years of experience If you are looking for a Full Stack Node JS, React JS, MongoDB(NoSQL) and MySQL experienced Web Developer, You are in the right place. A recent trend is React JS-based Single Page Application, which uses REST API as a backend. I will create the perfect REST API for your app by using Node JS, MongoDB(Mongoose ORM), or MySQL. Enriched REST API for further Android and IOS app development. Why Choose me? • 12+ Years of experience as frontend and backend developer. • Using React JS (Next JS) for Frontend Development. • Having expertise in backend development using Node JS, Python, Express JS, and MySQL(Sequelize ORM) or MongoDB as a database. • Very Good understanding of React-Redux, Redux-Thunk, and Context API • Very good knowledge of GIT version control. Good expertise in git branching. • Productive and extra miles of effort. • Complete knowledge of Full Stack Web Development. • Having experience in deploying apps on Heroku and Cloud i.e Azure. What I offer: • Convert existing website to new frontend and backend. • SQL / NoSQL Database Integration. • Effective Database Design. • Code optimization. • REST API development. • Third-Party API integration. • Many many more according to the project’s requirements. • Full Stack Web Development The technologies I'm using are as follows, • NodeJS • ReactJS • Redux • NEXTjs • Express JS • MySQL • MongoDB • Sequilized & Mongoose ORM • JavaScript • Python • React-Bootstrap-4 • jquery • GitHub Pros, • Delivered on time. • Pixel-Perfect workflows. • 100% professionalism. • My focus is on managing and growing relationship with clients. • Client satisfaction and quality work are my top priorities. - Thanks for having a look at my profile. - It's my pleasure to work with you on your next project. Sincerely, Kundan Want to browse more talent?
Sign up
Join the world’s work marketplace

Post a job to interview and hire great talent.
Hire Talent