I've been all over the Meteor and Angular-Meteor websites (and Angular-Meteor github) looking for a pure Angular 2/4 guide to using Meteor (all I can seem to find is an Ionic one). Kind of confused as to how to use the CLI's together. Does anyone have a tutorial or know the steps to setting this up without Ionic? Or should I just be trying to follow the Ionic tutorial but using Angular CLI instead?
Specific Angular 2/4 & Meteor quickstart/tutorial?
411 Views Asked by arproudlock At
1
There are 1 best solutions below
Related Questions in METEOR
- GA Preview Says Tags are Working on Ngrok But Not on Production?
- Running a project in meteor, Errors prevented startup. While downloading [email protected]...: > error: certificate has expired
- Why does this meteor publication go slower when using limit?
- Migrating from meteor 1.8.3 to 2.6
- Meteor wallet app tutorial mins 9:27 - 12:12 Type annotations can only be used in TypeScript files error
- MeteorJS Oplog: Got exception while polling query MongoError: no primary server available
- Login forbidden after upgrading Meteor version 2.2 to 2.4
- Expo react-native app crashes right after launch in Test Flight
- How to download a file stored as Binary in MongoDB
- Meteor server side packages debugging
- Profiling packages and services for meteor apps
- MeteorJS passwordless email authentication sends a link pointing to the specific server instead of domain name
- Meteor app is not working with nivo on runtime
- Meteorjs equivalent of ws.send
- Meteor/Vue/Framework7: No style being used
Related Questions in ANGULAR-METEOR
- how to resolve the 'unknown provider' angular injectr error when adding third party angular directives to angular-meteor app
- Transform business object into view model in angular-meteor
- how to properly configure angular-meteor to have the content show up on the page
- how to request angular version that is lower than default with angular-meteor
- how to fix the 'Unknown provider: $compileProvider' error in angular-meteor app
- a simple select input is not working properly with angular-meteor
- how to add third party angular directives to meteor application
- is there a difference between meteor angular:angular and urigo:angular-meteor packages?
- is it possible to use getReactively on $rootScope variables?
- how to prevent error: [ng:btstrpd] App Already Bootstrapped with this Element 'document'
- is there a version of SmartAdmin/Sb-Admin based on angular-meteor?
- issue with running Angle - Bootstrap Admin app (angular-meteor version): TypeError: $browser.addPollFn is not a function angular-cookies.js:60
- Duplicate _id in new_results
- Meteor: WebSocket is already in CLOSING or CLOSED state
- angular-meteor: Can I add (push) items to $scope var just after subscription resolves?
Related Questions in ANGULAR2-METEOR
- Any Angular2 Meteor Material working example?
- Uncaught Error: Can't resolve all parameters for NgbAlert with angular2-meteor and ng-bootstrap
- How to deploy an angularcli-meteor project on Galaxy?
- Specific Angular 2/4 & Meteor quickstart/tutorial?
- Build Angular Meteor app fails with angular-compilers 0.2.5
- Cordova error: Failed to fetch plugin [email protected] via registry
- Internationalization for Angular2 Meteor Web Application
- Meteor-Angular2 Subscription Doesnt Working Correctly
- Meteor/Angular2 Application freeze when loading 2nd Component
- Component Test angular2-meteor
- How can I make a permalink at Angular2 for each article
- IE9 / IE10 meteorInstall is undefined
- Angular 2 Meteor initial load is so slow
- Data display with MeteorJS Collection and Angular 2
- Update user email address in meteor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
For anyone who is interested.
I spent most the day trying to use https://github.com/Urigo/angular-meteor with my app (used the quickstart), copied most of my apps src into the clients/imports directory and tried to keep the same app structure as the one on github, with a bit of messing around was able to get the angular bit working however if you are planning on using @angular/material, especially with a custom theme then you're in for a world of hurt (quite a few issues and comments re importing scss mixins from node_modules on the meteor github, meteors build system doesn't seem to like it).
To make it all work properly, follow the steps in The process I've done to recreate this section at https://github.com/Urigo/angular-meteor/examples/angularcli-meteor
If you already have an angular 4 app partially built then start in your apps root directory at step 3 (ng eject).
Instructions are fairly straight forward. Any steps where there isn't code examples (Now we need to create api/tsconfig.json) copy the file in question from the repo.
Hope that saves some others a heap of time.