What is the Difference Between factory and service in AngularJS ?
Last Updated :
02 Aug, 2023
AngularJS is a JavaScript-based framework. It can be used by adding it to an HTML page using a <script> tag. AngularJS helps in extending the HTML attributes with the help of directives and binding of data to the HTML with expressions.
In this article, we will explore the differences between the factory and service in AngularJS and provide examples to illustrate their usage. Two commonly used methods for creating services in AngularJS are factories and services. While they serve a similar purpose, there are some key differences between the two.
AngularJS factory
A factory in AngularJS is a function that returns an object. It allows us to define and configure the object before returning it. Factories are used to create singleton objects, which means that AngularJS will create the object once and then reuse it whenever the factory is injected into different components of the application. This enables the sharing of data and functionality across the application.
Syntax:
app.factory('userService', function () {
var user = {
name: 'Geek',
age: 30
}; return {
getUser: function () {
return user;
}, setUser: function (newUser) {
user = newUser;
}
};
});
Example: Below example demonstrates the usage of the factory in AngularJS. Here, In the example, when the user clicks the button, it changes the name to a different name using a factory.
HTML
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<title>
AngularJS Factory vs Service Example
</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js">
</script>
</head>
<body ng-controller="UserController"
style="text-align: center;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h2>Factory usage</h2>
<p>Name: {{factoryUser.name}}</p>
<button ng-click="changeFactoryUser()">
hange Name
</button>
<script>
// Define the AngularJS module
var app = angular.module("myApp", []);
// Define the factory
app.factory("userServiceFactory", function () {
var name = {
name: "Welcome to",
};
return {
getUser: function () {
return name;
},
setUser: function (newName) {
name = newName;
},
};
});
// Define the controller
app.controller("UserController", [
"$scope",
"userServiceFactory",
function ($scope, userServiceFactory) {
// Access the factory user
$scope.factoryUser = userServiceFactory.getUser();
// Change the factory user
$scope.changeFactoryUser = function () {
userServiceFactory.setUser({ name:
"Welcome to GeeksforGeeks!" });
$scope.factoryUser = userServiceFactory.getUser();
};
},
]);
</script>
</body>
</html>
Output:
.gif)
AngularJS Service
A Service in AngularJS is a constructor function. When a service is injected into different components, AngularJS creates a new instance of the service using the 'new' keyword. Services are also singleton objects, meaning the same instance is shared across the application.
Syntax:
app.service('userService', function () {
this.user = {
name: 'Geek',
age: 30
}; this.getUser = function () {
return this.user;
}; this.setUser = function (newUser) {
this.user = newUser;
};
});
Example: Below example demonstrates the usage of service in AngularJS. Here, in the example, when the user clicks the button, it changes the name to a different name using a service in AngularJS.
HTML
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<title>
AngularJS Factory vs Service Example
</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js">
</script>
</head>
<body ng-controller="UserController"
style="text-align: center">
<h1 style="color: green">
GeeksforGeeks
</h1>
<h2>Service usage</h2>
<p>Name: {{serviceUser.name}}</p>
<button ng-click="changeServiceUser()">
Change Name
</button>
<script>
var app = angular.module("myApp", []);
// Define the service
app.service("userServiceService", function () {
this.user = {
name: "Hello",
age: 30,
};
this.getUser = function () {
return this.user;
};
this.setUser = function (newUser) {
this.user = newUser;
};
});
// Define the controller
app.controller("UserController", [
"$scope",
"userServiceService",
function ($scope, userServiceService) {
// Access the service user
$scope.serviceUser = userServiceService.getUser();
// Change the service user
$scope.changeServiceUser = function () {
userServiceService.setUser({ name: "Hello Geek!" });
$scope.serviceUser = userServiceService.getUser();
};
},
]);
</script>
</body>
</html>
Output:
.gif)
Difference between Factory and Service
|
It returns an object in AngularJS. | It returns a constructor function. |
Shared instance across the application | Shared instance across the application |
It is preferred for complex objects and dependencies | It is used for simple objects and functionality. |
It can be configured before returning the object | The configuration is done within the constructor. |
Detailed error messages during creation. | Less informative error messages during creation. |
Similar Reads
What is the difference between Service Directive and Module in Angular ? Angular is a Typescript framework used to build dynamic and Single-Page Applications. This has a strong focus on modularity and reusability of code which helps in creating complex and maintainable applications. At the core, Angular has 3 fundamental building blocks, i.e., Service, Directive and Modu
6 min read
What is the difference between '@' and '=' in directive scope in AngularJS ? AngularJS is a popular JavaScript framework, that provides powerful features for building dynamic web applications. When creating custom directives in AngularJS, you may come across the need to define a scope for your directive. The two most common methods to do this are by using the @ and = symbols
4 min read
What is the Difference Between $evalAsync and $timeout in AngularJS? AngularJS is a JavaScript framework, which may be utilized by including it in an HTML web page the usage of a <script> tag. AngularJS enables in extension the HTML attributes with the assistance of directives and binding of data to the HTML with expressions. It provides various tools for handl
5 min read
What is the Difference Between $routeProvider and $stateProvider in AngularJS ? In AngularJS, as we create Single-Page Applications, we need to implement the routing of components to view those images without having full page reloads. This can be achieved with the most popular routing methods, i.e., $routeProvider (ngRoute) and $stateProvider (ui-router).In this article, we wil
5 min read
What is the Difference between Constructor and ngOnInit in AngularJS ? Constructor: Constructor is the default method for a class that is created when a class is installed and ensures the proper execution of the roles in the class and its subsections. Angular are preferably the Dependency Injector (DI), analyzes the builder's components and when creating a new feature
3 min read
What is the difference between ng-app and data-ng-app in AngularJS ? In web application development, AngularJS is one of the most favorite dynamic JavaScript frameworks that has HTML through script tags, enabling us to augment the HTML attributes using the directives and facilitating the data binding through the expressions.In this article, we will see the concepts o
5 min read