GraphQL server demo

https://www.graphqlstack.com/ GraphQL Server – Apollo server starter example using https://www.apollographql.com/docs/apollo-server/getting-started/ Setup Notes Links graphql code: https://graphql.org/code/ apollo-server :https://www.apollographql.com/docs/apollo-server/ github: https://github.com/apollographql/apollo-server npm :https://www.npmjs.com/package/apollo-server-express Introduction We will use apollo server as a GraphQL server (to be used with any GraphQL client). Obtain a basic understanding of GraphQL principles Define a GraphQL schema that represents the structure of your data setContinue reading “GraphQL server demo”

Observables, Observers and Subscriptions

Official site: http://reactivex.io/ Learning: https://thinkrx.io/ Observable <— Subscription –> Observer (next(), error(), complete()). Observable: an observer subscribes to an Observable which reacts to the data stream the Observable emits. A “hot” Observable may emits items as soon as it is created, and so any observer who later subscribes to that Observable may start observing the sequence somewhere in theContinue reading “Observables, Observers and Subscriptions”

ComponentStore

ComponentStore From AngularToronto meet up Let’s do the preview of ComponentStore, and see what kind of problems it solves, where it is needed. We’ll go over Design Doc a bit and then dive into examples. We will also discuss any potential improvements. Stackblitz: https://stackblitz.com/edit/github-co&#8230; GitHub Demo: https://github.com/alex-okrushko/comp&#8230; Participants: Brandon Roberts (https://twitter.com/brandontroberts) Santosh Yadav (https://twitter.com/SantoshYadavDev) SerkanContinue reading “ComponentStore”

Hosting Angular app on GitHub

Hosting Angular app on GitHub You just need a github repository to host on github and make sure that you pushed the latest code. Install github pages tool for angular by using, npm install -g angular-cli-ghpages . Here deploying code in github pages is quite easy, Just need to make sure one thing, when you build yourContinue reading “Hosting Angular app on GitHub”