Hi Mario, "No, there is no way a server is required to have your web application files online." I already said that is no way to run a web-app without a server, I offered a solution for somebody who does not have a server and need one.
@adrian_patrascu
Nothing here yet.
Nothing here yet.
No blogs yet.
Hi Mario, "No, there is no way a server is required to have your web application files online." I already said that is no way to run a web-app without a server, I offered a solution for somebody who does not have a server and need one.
sorry it is https://www.wordbricks.com a sample blog is http://www.pifruits.net/wordbricks/ or a documentation site https://help.webdo.com/wordbricks/ it is based on AngularJS to create blog pages, after that the blog uses static pages only
No, there is no way a server is required to have your web application files online. If you just need a hosting or a free hosting you may try an account from https://www.webdo.com and next the https://ide.webdo.com that will allow to edit and host an AngularJS or React web application.
For PostgreSql you may check this : https://github.com/QBisConsult/psql-api Install from git as standalone server: git clone https: //github.com/QBisConsult/psql-api.git It is a REST API for PostgreSQL, however it will not alter the database structure, it creates a database metadata and use it to check CRUD operations before sending to the database.
An online CLOUD website text editor for web applications. Host and edit your websites or web applications. It is based on ACE text editor. https://ide.webdo.com Can be used to easy create learning environment for AngularJS, React or other JS frameworks.
Yes, the token will be validated server side for every request. The server validation will provide also user information given by the token to be used next in server API code. JWT validation will check only if the token is valid and return its value (JSON object), it is a very fast process that do not consume resources. Send an Authorization : Bearer <token> request header as standard procedure. JWT is one of the best way for authorization as you can create RESTful solutions. (do not depend on web sessions anymore) You may check the JWT first when you receive a request, validate it and next route the request to the module that handle it with added token information.