# frontpage-server **Repository Path**: mirrors_apollographql/frontpage-server ## Basic Information - **Project Name**: frontpage-server - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Deprecation notice This example is deprecated. For an up-to-date full-stack example for web, please check out the [current Apollo Fullstack Tutorial](https://www.apollographql.com/docs/tutorial/introduction/). For iOS (which used to depend on this server), check out the [current iOS tutorial](https://www.apollographql.com/docs/ios/tutorial/) # Hello World server The server that is used for the examples on dev.apollodata.com. This is a really simple GraphQL server that uses [Apollo Server](https://github.com/apollostack/apollo-server) and [GraphQL Tools](https://github.com/apollostack/graphql-tools) to serve a simple schema. It uses a very simple in-memory database, so if you restart the server or change the code, the data will reset. ## Installation Clone the repository and run `npm install` ``` git clone https://github.com/apollostack/frontpage-server cd frontpage-server npm install ``` ## Starting the server ``` npm start ``` The server will run on port 8080. You can change this by editing `server.js`.