Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonanv/task-ionic-angularjs
App of task in Ionic and Angular JS
https://github.com/jonanv/task-ionic-angularjs
angularjs css css3 html html5 ionic ionic-framework javascript
Last synced: 19 days ago
JSON representation
App of task in Ionic and Angular JS
- Host: GitHub
- URL: https://github.com/jonanv/task-ionic-angularjs
- Owner: jonanv
- Created: 2020-02-01T19:44:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T14:22:07.000Z (about 2 years ago)
- Last Synced: 2024-11-11T18:08:03.570Z (3 months ago)
- Topics: angularjs, css, css3, html, html5, ionic, ionic-framework, javascript
- Language: TypeScript
- Size: 1.69 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![NPM Version][npm-badge]][npm-url]
[![Node JS][node-badge]][node-url]
[![Angular JS][angular-badge]][angular-url]
[![Ionic][ionic-badge]][ionic-url]
[![License][license-badge]][license-url]# Site
# Install dependences
in ```task-ionic-angularjs/``````bash
npm install
```
or
```bash
yarn install
```***
# TaskIonicAngularjs
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.1.3.
## Development server
Run `ionic serve` for a dev server. Navigate to `http://localhost:8100/`. The app will automatically reload if you change any of the source files.
***
# Create project
```javascript
ionic start NameProject tabs
```# Start project with browser
```javascript
ionic serve -o
```# Create page - module without spec.ts
```javascript
ionic g page pages/add --spec=false
```
or```javascript
ionic generate page pages/add --spec=false
```# Create component without spec.ts and .css
```javascript
ng g c components/lists --spec=false -is
```
or```javascript
ng generate component components/lists --spec=false -is
```# Create service without spec.ts
```javascript
ionic g s services/wishes --spec=false
```
or
```javascript
ionic generate service services/wishes --spec=false
```# Create module
```javascript
ionic g m components
```
or
```javascript
ionic generate module components
```# Create pipe without spec.ts
```javascript
ng g p pipes/filterCompleted --spec=false
```
```javascript
ng generate pipe pipes/filterCompleted --spec=false
```# Server local
install global ```sudo npm i -g http-server```deploy in ```/task-ionic-angularjs/dist/task-ionic-angularjs/```
```javascript
http-server
```
or
```javascript
http-server -o
```[npm-badge]: https://img.shields.io/badge/npm-v6.13.4-brightgreen.svg
[npm-url]: https://www.npmjs.com
[node-badge]: https://img.shields.io/badge/nodejs-v10.18.1-brightgreen
[node-url]: https://nodejs.org/download/release/v10.18.1/
[angular-badge]: https://img.shields.io/badge/angular--CLI-v8.1.3-brightgreen
[angular-url]: https://angular.io/cli/
[ionic-badge]: https://img.shields.io/badge/ionic-v5.4.15-brightgreen
[ionic-url]: https://ionicframework.com/
[license-badge]: https://img.shields.io/badge/license-MIT-green.svg
[license-url]: https://opensource.org/licenses/MIT