Is it possible to use Angular JS for JAMstack architecture?
up vote
4
down vote
favorite
I am in need to implement a static SPA with JAMstack architecture. I know we can user ReactJS/VueJS for JAM based implementation. But I want to know is it possible to use Angular for JAMstack approach?
https://dev.to/leomeloxp/what-is-jam-stack-2957
javascript angularjs reactjs vue.js single-page-application
This question has an open bounty worth +100
reputation from VSO ending in 13 hours.
This question has not received enough attention.
I think this is a very good question.
add a comment |
up vote
4
down vote
favorite
I am in need to implement a static SPA with JAMstack architecture. I know we can user ReactJS/VueJS for JAM based implementation. But I want to know is it possible to use Angular for JAMstack approach?
https://dev.to/leomeloxp/what-is-jam-stack-2957
javascript angularjs reactjs vue.js single-page-application
This question has an open bounty worth +100
reputation from VSO ending in 13 hours.
This question has not received enough attention.
I think this is a very good question.
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I am in need to implement a static SPA with JAMstack architecture. I know we can user ReactJS/VueJS for JAM based implementation. But I want to know is it possible to use Angular for JAMstack approach?
https://dev.to/leomeloxp/what-is-jam-stack-2957
javascript angularjs reactjs vue.js single-page-application
I am in need to implement a static SPA with JAMstack architecture. I know we can user ReactJS/VueJS for JAM based implementation. But I want to know is it possible to use Angular for JAMstack approach?
https://dev.to/leomeloxp/what-is-jam-stack-2957
javascript angularjs reactjs vue.js single-page-application
javascript angularjs reactjs vue.js single-page-application
asked Oct 31 at 7:59
prisel
838
838
This question has an open bounty worth +100
reputation from VSO ending in 13 hours.
This question has not received enough attention.
I think this is a very good question.
This question has an open bounty worth +100
reputation from VSO ending in 13 hours.
This question has not received enough attention.
I think this is a very good question.
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
1
down vote
I'm not sure if you are talking about Angular(2+) or AngularJs(1), but anyways there is no tool that use any of those frameworks, but, here you can see all the current tools you can choose to build an app with the JAMStack
https://www.staticgen.com/
You can find some that use Jade, Handlebars for generate the templates. Maybe Angular is not present because is too big, a complete framework, and in these cases you most of all need a template helper.
So, good luck.
add a comment |
up vote
0
down vote
As i understand. JAM stand for :
- Javascript : to handling pre-generated content on client , fetch updates via API
- API : response for request from client , sent the markup out
- Markup : the pre-generated content (i'm sure it's called Serverside Rendering also)
So you can obviously build JAM with Angularjs.
Here are a few references that I know of, might enough to create JAM with AngularJS
- J : AngularJS famework it self. Use $http service for API requesting
- A : Express module - NodeJS
- M : https://github.com/runvnc/angular-on-server or https://github.com/ng-consult/ng1-server (didn't test any of these)
add a comment |
up vote
0
down vote
Concurring with Rodrigo's answer, there's no static site generator that uses Angular JS to my knowledge. But then again, if you want the interactivity of Angular JS on a static site, you can use a CDN source like this one from Google:
https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I'm not sure if you are talking about Angular(2+) or AngularJs(1), but anyways there is no tool that use any of those frameworks, but, here you can see all the current tools you can choose to build an app with the JAMStack
https://www.staticgen.com/
You can find some that use Jade, Handlebars for generate the templates. Maybe Angular is not present because is too big, a complete framework, and in these cases you most of all need a template helper.
So, good luck.
add a comment |
up vote
1
down vote
I'm not sure if you are talking about Angular(2+) or AngularJs(1), but anyways there is no tool that use any of those frameworks, but, here you can see all the current tools you can choose to build an app with the JAMStack
https://www.staticgen.com/
You can find some that use Jade, Handlebars for generate the templates. Maybe Angular is not present because is too big, a complete framework, and in these cases you most of all need a template helper.
So, good luck.
add a comment |
up vote
1
down vote
up vote
1
down vote
I'm not sure if you are talking about Angular(2+) or AngularJs(1), but anyways there is no tool that use any of those frameworks, but, here you can see all the current tools you can choose to build an app with the JAMStack
https://www.staticgen.com/
You can find some that use Jade, Handlebars for generate the templates. Maybe Angular is not present because is too big, a complete framework, and in these cases you most of all need a template helper.
So, good luck.
I'm not sure if you are talking about Angular(2+) or AngularJs(1), but anyways there is no tool that use any of those frameworks, but, here you can see all the current tools you can choose to build an app with the JAMStack
https://www.staticgen.com/
You can find some that use Jade, Handlebars for generate the templates. Maybe Angular is not present because is too big, a complete framework, and in these cases you most of all need a template helper.
So, good luck.
answered 2 days ago
Rodrigo
314
314
add a comment |
add a comment |
up vote
0
down vote
As i understand. JAM stand for :
- Javascript : to handling pre-generated content on client , fetch updates via API
- API : response for request from client , sent the markup out
- Markup : the pre-generated content (i'm sure it's called Serverside Rendering also)
So you can obviously build JAM with Angularjs.
Here are a few references that I know of, might enough to create JAM with AngularJS
- J : AngularJS famework it self. Use $http service for API requesting
- A : Express module - NodeJS
- M : https://github.com/runvnc/angular-on-server or https://github.com/ng-consult/ng1-server (didn't test any of these)
add a comment |
up vote
0
down vote
As i understand. JAM stand for :
- Javascript : to handling pre-generated content on client , fetch updates via API
- API : response for request from client , sent the markup out
- Markup : the pre-generated content (i'm sure it's called Serverside Rendering also)
So you can obviously build JAM with Angularjs.
Here are a few references that I know of, might enough to create JAM with AngularJS
- J : AngularJS famework it self. Use $http service for API requesting
- A : Express module - NodeJS
- M : https://github.com/runvnc/angular-on-server or https://github.com/ng-consult/ng1-server (didn't test any of these)
add a comment |
up vote
0
down vote
up vote
0
down vote
As i understand. JAM stand for :
- Javascript : to handling pre-generated content on client , fetch updates via API
- API : response for request from client , sent the markup out
- Markup : the pre-generated content (i'm sure it's called Serverside Rendering also)
So you can obviously build JAM with Angularjs.
Here are a few references that I know of, might enough to create JAM with AngularJS
- J : AngularJS famework it self. Use $http service for API requesting
- A : Express module - NodeJS
- M : https://github.com/runvnc/angular-on-server or https://github.com/ng-consult/ng1-server (didn't test any of these)
As i understand. JAM stand for :
- Javascript : to handling pre-generated content on client , fetch updates via API
- API : response for request from client , sent the markup out
- Markup : the pre-generated content (i'm sure it's called Serverside Rendering also)
So you can obviously build JAM with Angularjs.
Here are a few references that I know of, might enough to create JAM with AngularJS
- J : AngularJS famework it self. Use $http service for API requesting
- A : Express module - NodeJS
- M : https://github.com/runvnc/angular-on-server or https://github.com/ng-consult/ng1-server (didn't test any of these)
answered Nov 10 at 19:21
Zuko
1756
1756
add a comment |
add a comment |
up vote
0
down vote
Concurring with Rodrigo's answer, there's no static site generator that uses Angular JS to my knowledge. But then again, if you want the interactivity of Angular JS on a static site, you can use a CDN source like this one from Google:
https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js
add a comment |
up vote
0
down vote
Concurring with Rodrigo's answer, there's no static site generator that uses Angular JS to my knowledge. But then again, if you want the interactivity of Angular JS on a static site, you can use a CDN source like this one from Google:
https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js
add a comment |
up vote
0
down vote
up vote
0
down vote
Concurring with Rodrigo's answer, there's no static site generator that uses Angular JS to my knowledge. But then again, if you want the interactivity of Angular JS on a static site, you can use a CDN source like this one from Google:
https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js
Concurring with Rodrigo's answer, there's no static site generator that uses Angular JS to my knowledge. But then again, if you want the interactivity of Angular JS on a static site, you can use a CDN source like this one from Google:
https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js
answered yesterday
bengyup
11
11
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53078751%2fis-it-possible-to-use-angular-js-for-jamstack-architecture%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown