> ng new projects
> cd projects
> npm install [email protected] tether jquery --save
> npm install --save popper.js angular-popper
> ng serve
H4 On some network or machine setups Meteor's installer for Windows may fail. In such cases, follow these simple steps to install Meteor manually:
- Install 7-Zip or any other program that knows how to extract tar.gz files.
- Download the installation archive from https://packages.meteor.com/bootstrap-link?arch=os.windows.x86_32.
- In a command prompt, run echo %LocalAppData%.meteor -- this is the directory in which Meteor should be installed.
- Extract the installation archive into the directory above.
- Add this directory to your PATH environment variable.( C:\Users<myusername>\AppData\Local.meteor\ )
- You should now be able to open a new command prompt and run meteor. Some versions of Windows may require restarting your machine first.
- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
You can use multiple remote repositories with git. But you'll have to push separately into 2 of your remotes.
cd project
$ git remote add github https://github.com/your_user/your_repo.git
$ git remote add bitbucket https://[email protected]/your_user/your_repo.git
// Imperattive (How - means not have trust that's y we telling how gonna execute things)
var numbers = [3,2,4,5]
var total = 0
for(var i=0; i< numbers.length; i++){
total += numbers[i]
}
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
{ | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias", | |
"no_italic", | |
"no_bold" | |
], | |
"font_size": 11, |
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
<template> | |
<section> | |
<h1>Dashboard</h1> | |
<h1 v-if="!user">Getting user information...</h1> | |
<h1 v-if="user">Hello, {{user.username}}!! 👋</h1> | |
<button @click="logout()" class="btn btn-primary">Logout</button> | |
<br /> | |
<br /> | |
<button @click="showForm = !showForm" class="btn btn-info">Toggle Form</button> | |
<form v-if="showForm" @submit.prevent="addNote()"> |
OlderNewer