This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 786
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup / fix all example apps (#2439)
* Cleanup README * Cleanup README; Update deps; Component rename * Various mutation example updates - New README - Dependency updates - Test adjustments to fix failures - Component case change * Use ApolloServer 2; Meteor update; SSR approach update * Switch to npm file references; Add README * Changelog update
- Loading branch information
Showing
23 changed files
with
185 additions
and
2,288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Components Example | ||
|
||
``` | ||
npm install | ||
npm start | ||
``` | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Mutation Example | ||
|
||
``` | ||
npm install | ||
npm start | ||
``` | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,17 @@ | |
# 'meteor add' and 'meteor remove' will edit this file for you, | ||
# but you can also edit it by hand. | ||
|
||
meteor-base@1.1.0 # Packages every Meteor app needs to have | ||
[email protected].4 # Packages for a great mobile UX | ||
mongo@1.1.19 # The database Meteor supports right now | ||
meteor-base@1.4.0 # Packages every Meteor app needs to have | ||
[email protected].5 # Packages for a great mobile UX | ||
mongo@1.5.0 # The database Meteor supports right now | ||
static-html # Define static page content in .html files | ||
[email protected] # Reactive variable for tracker | ||
tracker@1.1.3 # Meteor's client-side reactive programming library | ||
tracker@1.2.0 # Meteor's client-side reactive programming library | ||
|
||
standard-minifier-css@1.3.4 # CSS minifier run for production mode | ||
standard-minifier-js@2.1.1 # JS minifier run for production mode | ||
es5-shim@4.6.15 # ECMAScript 5 compatibility for older browsers | ||
ecmascript@0.8.1 # Enable ECMAScript2015+ syntax in app code | ||
shell-server@0.2.4 # Server-side component of the `meteor shell` command | ||
server-render | ||
apollo | ||
standard-minifier-css@1.4.1 # CSS minifier run for production mode | ||
standard-minifier-js@2.3.4 # JS minifier run for production mode | ||
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers | ||
ecmascript@0.11.1 # Enable ECMAScript2015+ syntax in app code | ||
shell-server@0.3.1 # Server-side component of the `meteor shell` command | ||
server-render@0.3.1 | ||
underscore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@1.5.1 | ||
METEOR@1.7.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# SSR Example | ||
|
||
**Note:** This example uses Meteor. Meteor can be downloaded [here](https://www.meteor.com/install). | ||
|
||
``` | ||
meteor npm install | ||
meteor npm start | ||
``` | ||
|
||
Access: http://localhost:3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.