An open API service indexing awesome lists of open source software.

https://github.com/adampax/TiStarWars

Example of using JavaScript Promises in Appcelerator Titanium
https://github.com/adampax/TiStarWars

appcelerator appcelerator-titanium javascript promises star-wars titanium

Last synced: about 1 year ago
JSON representation

Example of using JavaScript Promises in Appcelerator Titanium

Awesome Lists containing this project

README

          

# TiStarWars

This is an example project demonstrating the use of JavaScript Promises inside of an Appcelerator
Titanium Project. More info:

[TiStarWars - The Force Reawakens](http://adampaxton.com/tistarwars-fetching-data-from-an-api-in-appcelerator-titanium/)

[Using Promises in Appcelerator](http://adampaxton.com/using-javascript-promises-in-appcelerator-titanium/)

![TiStarWars screenshot](https://i1.wp.com/adampaxton.com/wp-content/uploads/2017/05/TiStarWarsNexus-main.jpg?resize=576%2C1024 "TiStarWars")

## Data
Is uses the super-fun [Star Wars API](http://swapi.co/) for data.

This is an example response from [http://swapi.co/api/films/1/](http://swapi.co/api/films/1/)

~~~
{
"title": "A New Hope",
"episode_id": 4,
"opening_crawl": "It is a period of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base, have won\r\ntheir first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring the battle, Rebel\r\nspies managed to steal secret\r\nplans to the Empire's\r\nultimate weapon, the DEATH\r\nSTAR, an armored space\r\nstation with enough power\r\nto destroy an entire planet.\r\n\r\nPursued by the Empire's\r\nsinister agents, Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....",
"director": "George Lucas",
"producer": "Gary Kurtz, Rick McCallum",
"release_date": "1977-05-25",
"characters": [
"http://swapi.co/api/people/1/",
"http://swapi.co/api/people/2/",
"http://swapi.co/api/people/3/",
"http://swapi.co/api/people/4/",
"http://swapi.co/api/people/5/",
"http://swapi.co/api/people/6/",
"http://swapi.co/api/people/7/",
"http://swapi.co/api/people/8/",
"http://swapi.co/api/people/9/",
"http://swapi.co/api/people/10/",
"http://swapi.co/api/people/12/",
"http://swapi.co/api/people/13/",
"http://swapi.co/api/people/14/",
"http://swapi.co/api/people/15/",
"http://swapi.co/api/people/16/",
"http://swapi.co/api/people/18/",
"http://swapi.co/api/people/19/",
"http://swapi.co/api/people/81/"
],
"planets": [
"http://swapi.co/api/planets/2/",
"http://swapi.co/api/planets/3/",
"http://swapi.co/api/planets/1/"
],
"starships": [
"http://swapi.co/api/starships/2/",
"http://swapi.co/api/starships/3/",
"http://swapi.co/api/starships/5/",
"http://swapi.co/api/starships/9/",
"http://swapi.co/api/starships/10/",
"http://swapi.co/api/starships/11/",
"http://swapi.co/api/starships/12/",
"http://swapi.co/api/starships/13/"
],
"vehicles": [
"http://swapi.co/api/vehicles/4/",
"http://swapi.co/api/vehicles/6/",
"http://swapi.co/api/vehicles/7/",
"http://swapi.co/api/vehicles/8/"
],
"species": [
"http://swapi.co/api/species/5/",
"http://swapi.co/api/species/3/",
"http://swapi.co/api/species/2/",
"http://swapi.co/api/species/1/",
"http://swapi.co/api/species/4/"
],
"created": "2014-12-10T14:23:31.880000Z",
"edited": "2015-04-11T09:46:52.774897Z",
"url": "http://swapi.co/api/films/1/"
}
~~~

## License

MIT
## About
* [Adam Paxton](http://twitter.com/adampax)
* [Polanco Media, LLC](http://polancomedia.com)