├── .bowerrc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .yo-rc.json ├── LICENSE ├── README.md ├── bower.json ├── client ├── loopback │ ├── boot │ │ └── replication.js │ ├── datasources.json │ ├── index.js │ ├── model-config.json │ └── models │ │ ├── local-todo.json │ │ └── remote-todo.json └── public │ ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── styles.css │ ├── fonts │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── index.html │ ├── js │ ├── app.js │ ├── controllers │ │ └── todo.js │ └── services │ │ └── loopback.js │ └── views │ └── todo.html ├── common └── models │ └── todo.json ├── gulpfile.js ├── package.json ├── server ├── boot │ └── authentication.js ├── component-config.json ├── config.json ├── datasources.json ├── datasources.local.js ├── middleware.json ├── model-config.json └── server.js └── tests └── smoke.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "client/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | /client/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/.jshintrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-loopback": {} 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/bower.json -------------------------------------------------------------------------------- /client/loopback/boot/replication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/boot/replication.js -------------------------------------------------------------------------------- /client/loopback/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/datasources.json -------------------------------------------------------------------------------- /client/loopback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/index.js -------------------------------------------------------------------------------- /client/loopback/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/model-config.json -------------------------------------------------------------------------------- /client/loopback/models/local-todo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/models/local-todo.json -------------------------------------------------------------------------------- /client/loopback/models/remote-todo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/loopback/models/remote-todo.json -------------------------------------------------------------------------------- /client/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/css/bootstrap.css -------------------------------------------------------------------------------- /client/public/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/css/bootstrap.css.map -------------------------------------------------------------------------------- /client/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/css/styles.css -------------------------------------------------------------------------------- /client/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /client/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /client/public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/js/app.js -------------------------------------------------------------------------------- /client/public/js/controllers/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/js/controllers/todo.js -------------------------------------------------------------------------------- /client/public/js/services/loopback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/js/services/loopback.js -------------------------------------------------------------------------------- /client/public/views/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/client/public/views/todo.html -------------------------------------------------------------------------------- /common/models/todo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/common/models/todo.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/package.json -------------------------------------------------------------------------------- /server/boot/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/boot/authentication.js -------------------------------------------------------------------------------- /server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/component-config.json -------------------------------------------------------------------------------- /server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/config.json -------------------------------------------------------------------------------- /server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/datasources.json -------------------------------------------------------------------------------- /server/datasources.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/datasources.local.js -------------------------------------------------------------------------------- /server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/middleware.json -------------------------------------------------------------------------------- /server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/model-config.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/server/server.js -------------------------------------------------------------------------------- /tests/smoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop-community/loopback-example-isomorphic/HEAD/tests/smoke.js --------------------------------------------------------------------------------