Giter VIP home page Giter VIP logo

Comments (17)

christocracy avatar christocracy commented on June 7, 2024

This SampleApp IS an Ionic app.

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

Don't use that Ionic syntactic sugar with my plugin. Where did you get the idea to use that? Just access it directly via:

var bgGeo = window.BackgroundGeolocation;

bgGeo.configure(locationCallback, failureCallback, config);

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

If you're trying to use this, you can't. Whoever made that, designed it for the old deprecated version.

This Sample App is designed for the new version. Just use my plugin as documented here;

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

Hello Chris.

I'm trying to run the plugin automatically when platform is ready. actually
everything runs fine but onMotionChange function It is not triggered when I
move.

This is my code:
ionic.Platform.ready(function() {
BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);
BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

    $http.get('XXXXXXXXX')
    .success(function(data){
    $scope.dashboard = data;
    $scope.checkServices();
    })
    .error(function(msg){
    console.log(msg);
    });

    $scope.showAlert = function(title, content) {
    $ionicPopup.alert({
    title: title,
    content: content
    });
    };

    $scope.onMotionChange = function(isMoving, location, taskId) {
    //console.log('[js] onMotionChange: ', isMoving,
    JSON.stringify(location));
    $scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
    BackgroundGeolocationService.finish(taskId);
    }

2015-09-29 14:49 GMT-05:00 Chris Scott [email protected]:

Closed #16
#16
.


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

iOS or Android?

On Wednesday, September 30, 2015, Ángel García [email protected]
wrote:

Hello Chris.

I'm trying to run the plugin automatically when platform is ready. actually
everything runs fine but onMotionChange function It is not triggered when I
move.

This is my code:
ionic.Platform.ready(function() {
BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);
BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

$http.get('XXXXXXXXX')
.success(function(data){
$scope.dashboard = data;
$scope.checkServices();
})
.error(function(msg){
console.log(msg);
});

$scope.showAlert = function(title, content) {
$ionicPopup.alert({
title: title,
content: content
});
};

$scope.onMotionChange = function(isMoving, location, taskId) {
//console.log('[js] onMotionChange: ', isMoving,
JSON.stringify(location));
$scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
BackgroundGeolocationService.finish(taskId);
}

2015-09-29 14:49 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Closed #16
<
#16

.


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

Android

2015-09-30 15:48 GMT-05:00 Chris Scott [email protected]:

iOS or Android?

On Wednesday, September 30, 2015, Ángel García [email protected]
wrote:

Hello Chris.

I'm trying to run the plugin automatically when platform is ready.
actually
everything runs fine but onMotionChange function It is not triggered
when I
move.

This is my code:
ionic.Platform.ready(function() {
BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);
BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

$http.get('XXXXXXXXX')
.success(function(data){
$scope.dashboard = data;
$scope.checkServices();
})
.error(function(msg){
console.log(msg);
});

$scope.showAlert = function(title, content) {
$ionicPopup.alert({
title: title,
content: content
});
};

$scope.onMotionChange = function(isMoving, location, taskId) {
//console.log('[js] onMotionChange: ', isMoving,
JSON.stringify(location));
$scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
BackgroundGeolocationService.finish(taskId);
}

2015-09-29 14:49 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Closed #16
<

#16

.


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

You purchased Android?

On Wednesday, September 30, 2015, Ángel García [email protected]
wrote:

Android

2015-09-30 15:48 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

iOS or Android?

On Wednesday, September 30, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>
wrote:

Hello Chris.

I'm trying to run the plugin automatically when platform is ready.
actually
everything runs fine but onMotionChange function It is not triggered
when I
move.

This is my code:
ionic.Platform.ready(function() {

BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);
BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

$http.get('XXXXXXXXX')
.success(function(data){
$scope.dashboard = data;
$scope.checkServices();
})
.error(function(msg){
console.log(msg);
});

$scope.showAlert = function(title, content) {
$ionicPopup.alert({
title: title,
content: content
});
};

$scope.onMotionChange = function(isMoving, location, taskId) {
//console.log('[js] onMotionChange: ', isMoving,
JSON.stringify(location));
$scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
BackgroundGeolocationService.finish(taskId);
}

2015-09-29 14:49 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>:

Closed #16
<

#16

.


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

Not yet. Do we have to buy it ?

2015-09-30 15:51 GMT-05:00 Chris Scott [email protected]:

You purchased Android?

On Wednesday, September 30, 2015, Ángel García [email protected]
wrote:

Android

2015-09-30 15:48 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

iOS or Android?

On Wednesday, September 30, 2015, Ángel García <
[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>
wrote:

Hello Chris.

I'm trying to run the plugin automatically when platform is ready.
actually
everything runs fine but onMotionChange function It is not triggered
when I
move.

This is my code:
ionic.Platform.ready(function() {

BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);
BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

$http.get('XXXXXXXXX')
.success(function(data){
$scope.dashboard = data;
$scope.checkServices();
})
.error(function(msg){
console.log(msg);
});

$scope.showAlert = function(title, content) {
$ionicPopup.alert({
title: title,
content: content
});
};

$scope.onMotionChange = function(isMoving, location, taskId) {
//console.log('[js] onMotionChange: ', isMoving,
JSON.stringify(location));
$scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
BackgroundGeolocationService.finish(taskId);
}

2015-09-29 14:49 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>:

Closed #16
<

#16

.


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

Free=iOS only. Stated in README of plugin.

Pay to get Android

On Wednesday, September 30, 2015, Ángel García [email protected]
wrote:

Not yet. Do we have to buy it ?

2015-09-30 15:51 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

You purchased Android?

On Wednesday, September 30, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>
wrote:

Android

2015-09-30 15:48 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>:

iOS or Android?

On Wednesday, September 30, 2015, Ángel García <
[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>
wrote:

Hello Chris.

I'm trying to run the plugin automatically when platform is ready.
actually
everything runs fine but onMotionChange function It is not
triggered
when I
move.

This is my code:
ionic.Platform.ready(function() {

BackgroundGeolocationService.onLocation($scope.setCurrentLocationMarker);

BackgroundGeolocationService.onMotionChange($scope.onMotionChange);
BackgroundGeolocationService.onGeofence($scope.onGeofence);
});

/**

  • BackgroundGelocation plugin state
    */
    $scope.bgGeo = {
    enabled: window.localStorage.getItem('bgGeo:enabled') == 'true',
    started: window.localStorage.getItem('bgGeo:started') == 'true'
    };

$http.get('XXXXXXXXX')
.success(function(data){
$scope.dashboard = data;
$scope.checkServices();
})
.error(function(msg){
console.log(msg);
});

$scope.showAlert = function(title, content) {
$ionicPopup.alert({
title: title,
content: content
});
};

$scope.onMotionChange = function(isMoving, location, taskId) {
//console.log('[js] onMotionChange: ', isMoving,
JSON.stringify(location));
$scope.showAlert('onMotionChange', 'isMoving: ' + isMoving);
BackgroundGeolocationService.finish(taskId);
}

2015-09-29 14:49 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>');>>:

Closed #16
<

#16

.


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

Please do not publicly post your license.

Where do you need help?

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

Ok sorry, we need to send the position of driver through a web service,
then when the app detect motion change and the vehicle is moving send the
position...I have tried several ways of doing it . but it seems that the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott [email protected]:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García [email protected] wrote:

Ok sorry, we need to send the position of driver through a web service,
then when the app detect motion change and the vehicle is moving send the
position...I have tried several ways of doing it . but it seems that the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

and since you're a paying customer, please post on the private repo.

On Sunday, October 4, 2015, Chris Scott [email protected] wrote:

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');> wrote:

Ok sorry, we need to send the position of driver through a web service,
then when the app detect motion change and the vehicle is moving send the
position...I have tried several ways of doing it . but it seems that the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott [email protected]:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

Android. yes, i booted the sampleApp...actually i rebuild our app above
your sampleApp

2015-10-04 22:01 GMT-05:00 Chris Scott [email protected]:

and since you're a paying customer, please post on the private repo.

On Sunday, October 4, 2015, Chris Scott [email protected] wrote:

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');> wrote:

Ok sorry, we need to send the position of driver through a web service,
then when the app detect motion change and the vehicle is moving send
the
position...I have tried several ways of doing it . but it seems that the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott [email protected]:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Snet form Gmail Mobile

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

Talk to me here:
https://github.com/transistorsoft/cordova-background-geolocation

On Sunday, October 4, 2015, Ángel García [email protected] wrote:

Android. yes, i booted the sampleApp...actually i rebuild our app above
your sampleApp

2015-10-04 22:01 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

and since you're a paying customer, please post on the private repo.

On Sunday, October 4, 2015, Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');> wrote:

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>> wrote:

Ok sorry, we need to send the position of driver through a web
service,
then when the app detect motion change and the vehicle is moving send
the
position...I have tried several ways of doing it . but it seems that
the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

angelrdgz avatar angelrdgz commented on June 7, 2024

It give me an error 404 :(

2015-10-04 22:07 GMT-05:00 Chris Scott [email protected]:

Talk to me here:
https://github.com/transistorsoft/cordova-background-geolocation

On Sunday, October 4, 2015, Ángel García [email protected] wrote:

Android. yes, i booted the sampleApp...actually i rebuild our app above
your sampleApp

2015-10-04 22:01 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

and since you're a paying customer, please post on the private repo.

On Sunday, October 4, 2015, Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');> wrote:

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>> wrote:

Ok sorry, we need to send the position of driver through a web
service,
then when the app detect motion change and the vehicle is moving
send
the
position...I have tried several ways of doing it . but it seems that
the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
#16 (comment)
.

Universidad de Colima

from cordova-background-geolocation-sampleapp.

christocracy avatar christocracy commented on June 7, 2024

Who bought your license? Did you not get your github account registered?

On Monday, October 5, 2015, Ángel García [email protected] wrote:

It give me an error 404 :(

2015-10-04 22:07 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');>:

Talk to me here:
https://github.com/transistorsoft/cordova-background-geolocation

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');> wrote:

Android. yes, i booted the sampleApp...actually i rebuild our app above
your sampleApp

2015-10-04 22:01 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>:

and since you're a paying customer, please post on the private repo.

On Sunday, October 4, 2015, Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>> wrote:

iOS? android? Have you booted the SampleApp?

On Sunday, October 4, 2015, Ángel García <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>');>> wrote:

Ok sorry, we need to send the position of driver through a web
service,
then when the app detect motion change and the vehicle is moving
send
the
position...I have tried several ways of doing it . but it seems
that
the
service will not start

2015-10-04 21:47 GMT-05:00 Chris Scott <[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');
<javascript:_e(%7B%7D,'cvml','[email protected]
javascript:_e(%7B%7D,'cvml','[email protected]');');>>:

Please do not publicly post your license.

Where do you need help?


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
<

#16 (comment)

.

Snet form Gmail Mobile


Reply to this email directly or view it on GitHub
<
#16 (comment)

.

Universidad de Colima


Reply to this email directly or view it on GitHub
#16 (comment)
.

Snet form Gmail Mobile

from cordova-background-geolocation-sampleapp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.