Giter VIP home page Giter VIP logo

ember-notify's Introduction

Build Status

ember-notify

ember-notify displays wee little notification messages down the bottom of your Ember.js app.

Compatibility

ember-notify is compatible with the following presentation frameworks:

  • Zurb Foundation 6 (default)
  • Zurb Foundation 5: <EmberNotify @messageStyle="foundation-5" />
  • Thoughtbot Refills: <EmberNotify @messageStyle="refills" />
  • Twitter Bootstrap: <EmberNotify @messageStyle="bootstrap" />
  • Semantic-UI: <EmberNotify @messageStyle="semantic-ui" />
  • UIKit: <EmberNotify @messageStyle="uikit" />

The CSS animations are inspired by CSS from alertify.js. You can also customize the positioning and animations by overriding the default ember-notify CSS class. For usage, see the animations example.

Usage

  1. Add <EmberNotify /> to one of your templates, usually in application.hbs
  2. Inject the notify service
  3. Display messages using the info, success, warning, alert and error methods

Examples

import Component from '@glimmer/component';
import { inject as service } from '@ember/service';
import { action } from '@ember/object';

export default class MyComponent extends Component {
  @service notify;

  @action
  sayHello() {
    this.notify.info('Hello there!');
  }
}

By default the notifications close after 2.5 seconds, although you can control this in your template:

<EmberNotify @closeAfter={{4000}} />

Or you can control when each message is closed:

let message = this.notify.alert('You can control how long it is displayed', {
  closeAfter: 10000 // or set to null to disable auto-hiding
});

...and you can hide messages programmatically:

message.close();

You can specify raw HTML:

this.notify.info({ html: '<div class="my-div">Hooray!</div>' });

Rounded corners, if that's your thing:

this.notify.alert(`This one's got rounded corners.`, {
  radius: true
});

Include custom classNames on your message:

this.notify.alert('Custom CSS class', {
  classNames: ['my-class']
});

Include an identifier to avoid duplicate messages being displayed:

this.notify.alert('Unique Message', { id: 'some-unique-identifier' });

Multiple Containers

If you want to have separate notifications and control where they're inserted into the DOM you can have multiple <EmberNotify /> components, but only one of them can be accessed using the injected service. The others you will need to provide a source property, so secondary containers should be used as follows:

 <EmberNotify @source={{this.alternativeNotify}} />
import Component from '@glimmer/component';
import Notify from 'ember-notify';
import { action } from '@ember/object';

export default class MyComponent extends Component {
  alternativeNotify = Notify.create();

  @action
  clicked() {
    this.alternativeNotify.success('Hello from the controller');
  }
}

Custom message template

You can pass a block with template you want to use for each message (instead of using the default one). It may look like this:

  <EmberNotify as |message close|>
    <a {{on "click" (action close)}} class="close">
      close from block
    </a>
    <span class="message-from-block">
      {{message.text}}
    </span>
  </EmberNotify>

Two arguments are passed to the block: message object, and close action. Make sure you are using Closure Actions syntax passing the action (e. g. <a {{action close}} or <YourComponent @close={{action close}} />.

Custom Animations

By default, the ember-notify message will appear in the bottom right corner of the screen. You may want to control the positioning or the animation. To do so, you need to pass a CSS class using the defaultClass option. This will render the top level ember-notify element with the class you pass in.

<!-- Gives class="custom-notify"> to top level element -->
<EmberNotify @defaultClass="custom-notify" />

Then you need to add custom styling for each of the elements within the ember-notify structure. The following snippet summarizes rules needed for a custom look. For a complete example that you can drop into your project, see examples/custom-position-animations.css

/* Main container */
.custom-notify {
  position: fixed;
  top: 10px;
  right: 0;
  left: 0;
}

/* Message box */
.custom-notify .callout {
  position: relative;
  overflow: hidden;
}

/* Classes applied for animating in/out */
.custom-notify .ember-notify-show {}
.custom-notify .ember-notify-hide {}

Turn off loading CSS

If you want to use the addon without loading the CSS themes (because you have your own CSS) add this to your ember-cli-build.js file:

let app = new EmberApp({
  emberNotify: {
    importCss: false
  }
});

Installation

This module is an ember-cli addon, so installation is easy as pie.

ember install ember-notify

Upgrading from a previous version

See the CHANGELOG.

ember-notify's People

Contributors

baltazore avatar bekzod avatar brianally avatar btecu avatar dependabot[bot] avatar eflanagan0 avatar elwayman02 avatar frekw avatar gaurav0 avatar gzurbach avatar jaredcnance avatar jcope2013 avatar jelhan avatar josemarluedke avatar kanongil avatar kbullaughey avatar knownasilya avatar maxfierke avatar maxwondercorn avatar melsumner avatar mjanda avatar nruth avatar olleolleolle avatar panman82 avatar pavloo avatar plicjo avatar simonexmachina avatar stefanpenner avatar ttill avatar tygriffin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ember-notify's Issues

Alert doesn't work for Bootstrap

In Bootstrap, the alert style is actually called "danger". Since ember-notify sets an alert class, there's no styling of the message box. If I do Notify.show('danger', 'Message') it works perfectly.

image

Message Queue

This lib is fantastic!

Is there a way to set it to show messages in a queue, rather than stacking?

Ie for

this.notify.success("It Loaded!");
this.notify.success("So did this");

It would act like:

Message 1 Appears -> Message 1 Times Out
~then~
Message 2 Appears -> Message 2 Times Out

If not - I'd be happy to submit a PR? Just wanna check to see if it's possible first!

state bug when manually closing message

I ran into this while starting on my PR for #68.
I manually confirmed this does not affect 4.2.0 (912ba93).

steps to reproduce

prep environment

git clone https://github.com/efx/devel-ember-notify
cd devel-ember-notify
npm install
bower install
ember s

user actions

  1. navigate to localhost:4200 (open dev tools if you want the stack trace)
  2. click on the close icon of the notification in the bottom right corner of the screen
  3. you should see the following error
    screen shot 2015-11-20 at 4 09 31 pm

I think this has to do with the visibleObserver getting out of wack. I will focus on my previous feature request and then time permitting check this issue out further.

Bug: Notify 'undefined' on Ember 1.8

In every notification the word 'undefined' is appended to the text. I have tried to have a look around but ran out of time to figure out why that would happen.

Notify.config() for default configurations

Would be nice to have something along those lines, where Notify.config({..}) sets the default values to be used, unless they are overridden by Notify.[type](message, {..}).

This would include options like removeAfter, closeAfter, but not limited to those.

HTMLbars

I run into issues when using this along side Embe 1.10.0 which doesn't have Handlebars

template must be a function. Did you mean to call Ember.Handlebars.compile("...") or specify templateName instead?

I've narrowed it down to the lib/templates.js file.

ember-notify without ember cli

Hey there,

I know ember cli is recommended but I'm currently tinkering with a "non-cli" ember 1.10 and would like to try out this notify addon. Is there a pre-compiled version of ember-notify.js for me to import into ember?

Thanks in advance for your help!

app build crash with production env [3.1.2]

Running ember build --environment=production makes the build crash:

version: 0.1.12
Build failed.
Unexpected token punc «(», expected punc «:»
Error
    at new JS_Parse_Error (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:196:18)
    at js_error (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:204:11)
    at croak (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:674:9)
    at token_error (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:682:9)
    at expect_token (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:695:9)
    at expect (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:698:36)
    at /home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:1251:13
    at /home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:721:24
    at expr_atom (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:1181:35)
    at maybe_unary (/home/chrmod/Projects/rebased/finalcloud-dashboard/node_modules/ember-cli-uglify/node_modules/broccoli-uglify-sourcemap/node_modules/uglify-js/lib/parse.js:1357:19)

it is working properly with 3.1.1.

Crash is caused by those lines:

So something is wrong with ES6 transpiling.

IE8 Script Timeouts

I've been debugging our app for the past few days and finally tracked down the source of several script timeouts + total browser crashes in IE 8 to ember-notify. There's nothing in the README about supported browsers at the moment, so I'm wondering if there's even intent to support IE 8.

Setup:
ember-cli 0.1.12
ember 1.10
ember-notify 3.0.16

Not able to test usage of notifications during acceptance tests

Hi,

I'm not able to test notifications in my acceptance tests. I imported Notify and set testing to true but it doesn't work.

This is my test:

test('submit empty form', function (assert) {

  page
    .visitWithToken()
    .submitEmptyForm();

  andThen(function () {

    assert.equal(page.notifyBoxAmount, 1, 'alert notification is showing up');

  });
});

and page.notifyBoxAmount = count('.ember-notify').

My controller function looks like this:

confirmUserAccount () {

      if (isEmpty(confirmData.email)) {

        this.get('notify').alert(this.get('i18n').t('error.optin_41').string);

      }
}

Does anyone have an idea on this?

Ember 1.13.0-beta.1

I've noticed this component breaks with the latest beta. I get the following message

object in path "message" could not be found or was destroyed

Losing focus

I am relatively new to ember, but I have decided to learn it better by building a new app. In this app I use ember-notify to alert the user if a form input field saves successfully or not. My form is designed to easily tab to the next field to enter the next input text. The problem is that once a notification pops up the form loses focus, causing the user to have to click on the next field (there are 40 such fields in my case).

Having limited ember knowledge, I'm curious if this is an issue that can be resolved easily, or if this is a matter of how things work. Thoughts?

Removal of Notify.useBootstrap()

seems that is no longer available as a global option, is it being brought back?

I did this instead in my initializers folder if other people are looking for a solution

import Ember from 'ember';
import Notify from 'ember-notify/components/ember-notify';

export var initialize = function(/* container, application */) {
    Notify.reopen({
        messageStyle: 'bootstrap'
    });
};

export default {
  name: 'ember-notify-additional',
  initialize: initialize
};

Testing

I got ember-notify working quickly and can manually test that it shows fine. (thanks for the addon!)

But I'm struggling to get a test to detect it. Using mocha-adapter over qunit, I'm trying

click('form input[type=submit]').then(function() {
  expect(currentPath()).to.equal('initiatives.show');
  expect(find('.ember-notify').length).to.equal(1);
  // expect(find('.ember-notify').text()).to.equal('Initiative created successfully!');
});

I looked at ember-notify's own tests and they seem to just do the same thing. Am I missing something?

Allow to register as a service

Have inject locations specifiable in the configuration, so ['controller', 'route:application'] will insert a notify object into all controllers and the ApplicationRoute, for example.

Can be used with this.notify.info('Hey there.');

Freeze!

Hi!

Not sure whether the reason behind this is my incompetence or a problem in ember-notify.

Here's how i use it in my application.hbs template:

{{ ember-notify
  messageStyle='bootstrap'
  closeAfter=4000
}}

Here's how i use it in a component action:

actions: {
  refresh: function() {
    Notify.alert('Bla bla');
  }
}

Here's how i call the action from the template:

<button {{action "refresh"}}>Refresh</button>

When the promise is rejected, the ember-notify notification is displayed. After that, the tab freezes in Chrome with 100% CPU allocation.

If i comment out the Notify.alert(), the tab won't freeze.

Foundation vs 6

I think foundation 6 dont have alert-box now.

It was not showing any background color for me. I have changed the following line

//node_modules/ember-notify/addon/components/ember-notify.js:64
var classNames = ['button', type]; // it was //var classNames = ['alert-box', type];

Colors issue is fixed.

Append Notify to an element

I tried to append a notify to a specific element in my page, because the notifications appeared always at the bottom of the Screen and I want it next to the button the user clicked.

I put exactly the same code from the README to an action in my controller:

var container = Notify.Container.create();
container.appendTo($('#some-element'));
container.alert("Yo dawg.");

And i got:

Uncaught Error: Assertion Failed: You cannot append to an existing Ember.View. Consider using Ember.ContainerView instead.

Is there another way to use Notify on specific elements?

I am using latest (master) ember-cli and canary ember.

Not able to add this to EmberCLI

I'm trying to add this to my Ember-CLI app thats running on v0.0.39

I've added the following statements to my Brocfile.js

app.import('vendor/ember-notify/dist/named-amd/main.js', {
  exports: {
    'ember-notify': ['default']
  }
});
app.import('vendor/ember-notify/dist/ember-notify.css');

I'm not sure if I am missing something but I thought you needed to add something in your package.json file, but I don't see what to add there.

When I try to build it I get the following error:

Build failed.
Path or pattern "vendor/ember-notify/dist/named-amd/main.js" did not match any files
Error: Path or pattern "vendor/ember-notify/dist/named-amd/main.js" did not match any files
  at Object.multiGlob (/var/www/asdf/front/node_modules/ember-cli/node_modules/broccoli-concat/node_modules/broccoli-kitchen-sink-helpers/index.js:221:13)
  at /var/www/asdf/front/node_modules/ember-cli/node_modules/broccoli-concat/index.js:41:30
  at tryCatch (/var/www/asdf/front/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:163:16)
  at invokeCallback (/var/www/asdf/front/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:172:17)
  at publish (/var/www/asdf/front/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:150:13)
  at flush (/var/www/asdf/front/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/asap.js:51:9)
  at process._tickCallback (node.js:415:13)

Support `SafeString`?

Was curious if you would mind me implementing support for SafeString being passed to notify? I currently have a use case with ember-i18n, where the translated property is an object (SafeString). However, each time I pass it to notify I need to call .toString(). Obviously this should be on ember-i18n, but I feel like it could be useful.

Writing acceptance tests

I'm having trouble getting my assertions about notifications to pass in my acceptance tests. I followed your instructions on #7 to use then() and Ember.run.next() but the assertions still fail.

Here's the action on the route that I'm triggering:

actions: {
  save: function() {
    var route = this;
    var record = this.modelFor(this.routeName);
    record.save().then(function() {
      route.notify.success('Item saved.');
      route.transitionTo('home');
    });
  }
}

And here's the acceptance test in question:

test('it shows a saved notification', function(assert) {
  visit('/item/1/edit');
  click('#save').then(function() {
    Ember.run.next(this, function() {
      assert.equal(find('.alert-success').length, 1, 'it shows a success message');
    })
  });
});

The 'it shows a success message' assertion always fails. The notification shows up fine during manual testing. Pausing the debugger before assert.equal() and looking at the container in Test'em shows that the page is fully rendered but there is no notification displayed. Any ideas?

I'm using Ember-notify 3.1.4, Ember CLI 0.2.2 and Ember 1.10.0.

Request: demo

Could you please publish a demo via Github Pages?

Notify messages not showing in tests

I have an odd problem. While running my tests I've noticed that the notify alerts aren't showing up at all. We recently moved from alertify and they were working fine in test mode.

I'm using Ember 1.13.12 and the ember-notify 5.0.3

What's really strange about this, is if I access to dom while the tests are running, I can see that the notify elements are being created and removed so quickly that they don't show up. So they are being created, they just don't seem to stick around long enough.

Any thoughts as to why this might be?

[Feature Request] configurable positioning/CSS

Thanks for making this plugin; it is a lean alternative to other notification plugins in ember addon lands.
I would appreciate being able to configure the CSS included when I install the add on. Right now, I would need to manually override most of the style declarations in vendor/ember-notify.css. It would be great to be able to set classes on the ember-notify component so that I could have no styling by default and then configure the component to look/animate through custom CSS.

Is this something you would like to add to the plugin?
If so I can help with a PR.

ember cli bug?

how did you get this working in CLI?

import Notify from 'ember-notify';

Notify.alert("This is some info.");
Notify.success("That worked!"):
Notify.warning("Hmmn, that didn't work out.");
Notify.alert("This one's got rounded corners.", {
  radius: true
});

The import does not seem to work, and I had to add this to my bower file "ember-notify": "latest", to get this to be recognized by your setup. I added the requirement to the brocfile too.

The js error when I try to run this in debugger:

var container = Notify.Container.create();
ReferenceError: Notify is not defined

If I try to run import Notify from 'ember-notify'; I get:

SyntaxError: Unexpected reserved word

Example:

ENOENT, no such file or directory '/frontend/tmp/tree_merger-tmp_dest_dir-7PVeMAB2.tmp/ember/ember-notify.js'
Error: ENOENT, no such file or directory '/frontend/tmp/tree_merger-tmp_dest_dir-7PVeMAB2.tmp/ember/ember-notify.js'
    at Object.fs.statSync (fs.js:689:18)
    at addModule (/frontend/node_modules/ember-cli/node_modules/broccoli-es6-concatenator/index.js:81:46)
    at addModule (/frontend/node_modules/ember-cli/node_modules/broccoli-es6-concatenator/index.js:124:9)
    at /frontend/node_modules/ember-cli/node_modules/broccoli-es6-concatenator/index.js:57:7
    at tryCatch (/frontend/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:163:16)
    at invokeCallback (/frontend/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:172:17)
    at publish (/frontend/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/-internal.js:150:13)
    at flush (/frontend/node_modules/ember-cli/node_modules/rsvp/dist/commonjs/rsvp/asap.js:51:9)
    at process._tickCallback (node.js:419:13)
file changed app.js

Position of Close Styling (&times;)

In order to get the close button to look correct when the notification pops up, I had to edit ember-notify.hbs, and move the anchor tag with a class='close' inside of the main div or else it would wrap below. Is this the correct workaround?

Thanks!

TypeError: renderNode is undefined

My notification shows up correctly, then disappears correctly, then I get the following error in the console:

TypeError: renderNode is undefined

It seems to be tied to the setTimeout function (based on tracing it back)... Every new route I navigate to, I get the error again. It is only after showing the notify box. Before showing ember-notify, I don't get the error.

Here's my controller:

export default Ember.Controller.extend({
  notify: Ember.inject.service(),
  ...
  this.get('notify').success('Record saved!');
  ...
});

And my application.hbs:

{{ember-notify messageStyle='bootstrap'}}

Notify container is not attached to test container

The container for the notifications is not rendered within the testing container. Because of this, notifications are not removed after a test completes.

ember-cli 0.1.1

vendor.js:28481 DEBUG: Ember : 1.8.0-beta.4
vendor.js:28481 DEBUG: Ember Data : 1.0.0-beta.11
vendor.js:28481 DEBUG: Handlebars : 1.3.0
vendor.js:28481 DEBUG: jQuery : 1.11.1

bind not available in phantomjs

I'm using phantomjs version 1.9.7, and bind is not available. I see internally you're using a polyfill for bind, but at first glance it seems only used for tests, but there's still a bind call in addon/index.js

Style not correct with bootstrap

In vendor/ember-notify.css:

.ember-notify {
  /* the following is purely so that it doesn't look broken without Foundation installed */
  box-sizing: border-box;
  background: #ccc;
  padding: 10px;
}

However, that background causes problems when messageStyle='bootstrap' is used. The gray wins instead of the green, pink, etc.

Clearing notifications on app destroy

I'm using ember-notify all over the show, and have noticed that these messages stick around during my test runner. It would be great if the notifications would be removed when the app is destroyed. This is generally not noticeable during production so not very high priorty.

ember-notify 3.2 breaks liquid-fire

I created this bug when I introduced notify into components. Liquid-fire is also dependent on a property named notify (see https://github.com/ef4/liquid-fire/search?utf8=%E2%9C%93&q=notify) so this injection breaks its functionality. This is the danger of injection.

I'm opening a bug in place of an MR since the process is too trivial but the new name probably warrants a discussion. We should keep the renamed variable consistent across routes / controllers / components. Thoughts?

Acceptance test import failure

not ok 1 PhantomJS 1.9 - global failure
    ---
        actual: >
            null
        message: >
            Error: Could not find module `ember-notify` imported from `map/initializers/ember-notify`
        Log: >
    ...
not ok 2 PhantomJS 1.9 - TestLoader Failures: map/tests/acceptance/submit-feedback-test: could not be loaded
    ---
        actual: >
            null
        message: >
            Died on test #1     at http://localhost:7357/assets/test-support.js:2688
                at http://localhost:7357/assets/test-support.js:5453
                at http://localhost:7357/assets/test-loader.js:31
                at http://localhost:7357/assets/test-loader.js:21
                at http://localhost:7357/assets/test-loader.js:40
                at http://localhost:7357/assets/test-support.js:5460: Could not find module `ember-notify` imported from `map/initializers/ember-notify`
        Log: >
    ...

This looks like an issue with the test loader or with how ember-notify sets up the initializer. Not sure. But it works outside the tests..

ember-addon-main is deprecated

Getting the following deprecation warning in ember-cli 0.0.40

version: 0.0.40
DEPRECATION: ember-notify is using the deprecated ember-addon-main definition. It should be updated to {'ember-addon': {'main': 'ember-addon.js'}}

Different display periods

It would be great to have the display length variable based on notification type. Ie a success message might only be up for a short time, while an error might want to stick around a bit longer since the messages might be longer. If this could be custom per app, that would be useful as well.

Support for bootstrap

Hi there!

I came across your project by accident while looking for a solution to get alertify working with ember-cli. It seems that alertify is not maintained anymore and it might be time for me to switch to something else.
I tried to install ember-notify and it runs like a charm! However, I'm using bootstrap and the notification box is currently... transparent.
My skills in graphic design are pretty much nonexistent so I cannot really help to produce a theme. However, I'd love to use ember-notify in my project if it was supporting bootstrap with a decent look by default :)

I will come back once in while over here to see if things have moved in this direction.

Thanks!

Setting defaults

Thank you for the add-on!

Quick question, what is the ideal place to make the: "Notify.useBootstrap();" call?

Can this be set once during startup?

Thanks

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.