5.0.1 • Published 4 years ago

auto-bind v5.0.1

Weekly downloads
1,039,085
License
MIT
Repository
github
Last release
4 years ago

auto-bind

Automatically bind methods to their class instance

It also correctly binds inherited properties.

Install

npm install auto-bind

Usage

import autoBind from 'auto-bind';

class Unicorn {
	constructor(name) {
		this.name = name;
		autoBind(this);
	}

	message() {
		return `${this.name} is awesome!`;
	}
}

const unicorn = new Unicorn('Rainbow');

// Grab the method off the class instance
const message = unicorn.message;

// Still bound to the class instance
message();
//=> 'Rainbow is awesome!'

// Without `autoBind(this)`, the above would have resulted in
message();
//=> Error: Cannot read property 'name' of undefined

API

autoBind(self, options?)

Bind methods in self to their class instance.

Returns the self object.

self

Type: object

An object with methods to bind.

options

Type: object

include

Type: Array<string | RegExp>

Bind only the given methods.

exclude

Type: Array<string | RegExp>

Bind methods except for the given methods.

React

Same as autoBind but excludes the default React component methods.

import autoBindReact from 'auto-bind/react';

class Foo extends React.Component {
	constructor(props) {
		super(props);
		autoBindReact(this);
	}

	// …
}

Related

  • bind-methods - Bind all methods in an object to itself or a specified context
sonos-radio-salietchelon-gql-typescript-apollo-angular@stelladoradus/hermes-cli@stelladoradus/stella-cli@ourharvest/email-templates@xornot/boundnocodb1rc-crudweb-hook-test-lambda@prodam/prodam-types@lightsparkdev/js-sdknocodb-daily@everything-registry/sub-chunk-1184@imtbl/imxd-clientimx-sdk@slide-web3/sdktangerinetapstrapteraslice-client-jssveltify-vitewirewithhold-message-avaxc-typeormxc-core-tsxc-data-mapperxc-data-mapper-tsxc-instantxgenetelegram-bot-makertemba-analyticssstackoverflow-clithree-voxel-loadervoicerbetter-frames-1jimmifyjpeg-camera-es6jspsychjerry-generic-sdkjerry-react-apollojointedisoflowkudaimx-sdk-alterink-cjsinki18n-plushomebridge-platform-cechebo-snapshot-repository-s3hebo-event-repository-dynamodbhebo-event-repository-inmemoryhebo-notification-handler-inmemoryhebo-notification-handler-snshebo-snapshot-repository-inmemorygridsomegundam5litirdlitefsleilo-backendleilo-client-apilog-rhythmlucentsdblucentsdb-dailylivhublux-pad@wentsul/flow-operations@voxel51/api-js@worldwidebaby/graphql-codegen@xianbb/gridsome@uc-engg/openapi-validator-middleware@types/auto-bind@uci/websocket-client@tinacms/cli@towercg-plugins/twitch-dashboard@towercg-plugins/timers-dashboard@towercg-plugins/timers-server@towercg/client@towercg/dashboard@towercg/server@therobot/codegen-vue-apollo@trademachines/typescript-base-app@towercg-plugins/example-dashboard@upload-io/upload-shared-iso@yiin/ink@yitech/oftp@yoobic/jpeg-camera-es6@zalastax/nolb-auto-@temir/corealmond-graphql-codegen-apolloamp-gridsomeamplify-codegen-model-plugin@zuckersalzundpfeffer/gridsomeaes-crypto-testaes-encryption-testaxios-form-dataazure-queue-consumerazure-queue-subscriberarsnippetasrtdaquaduxasa-graphql-ts-typescript-operations
5.0.1

4 years ago

5.0.0

4 years ago

4.0.0

6 years ago

3.0.0

6 years ago

2.1.1

6 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.2.1

7 years ago

1.2.0

8 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.1.0

9 years ago