5.0.1 • Published 3 years ago

auto-bind v5.0.1

Weekly downloads
1,039,085
License
MIT
Repository
github
Last release
3 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-instantxgenerunnable-exportss-geneshoutem-ui-exposession-messenger-nodejssand-featherssandformssandforms-reactscorm-provider-testrestlioreimtelegram-bot-makertemba-analyticssstackoverflow-cliseam-stringrouting-decoratorreythree-voxel-loadervoicergridsome-make@concorde2k/ccsqllivhublog-rhythmgridsomegraphqlator-codegen-plugingraphql-codegen-visitor-plugin-commongraphql-to-ts-with-typedocjointedjerry-react-apolloi18n-plusisoflowink-cjsinklux-padlitefsleilo-backendleilo-client-apilitirdmst-factoryjspsychkudagrunt-opencareimx-sdk-altergraphql-codegen-cypress-typescriptgraphql-codegen-default-documentsgraphql-codegen-documentsgraphql-codegen-flutter-artemis-hooksgraphql-codegen-typescript-apollo-angular-etchelongraphql-codegen-typescript-apollo-clientgraphql-codegen-sqlmancergraphql-codegen-typescript-effectorgraphql-codegen-ts-plugingraphql-codegen-typescript-amplify-angulargraphql-codegen-typescript-react-connectiongraphql-codegen-apollo-cachegraphql-codegen-apollo-next-ssrgundam5jerry-generic-sdkjimmifyjpeg-camera-es6homebridge-platform-cechebo-event-repository-inmemoryhebo-notification-handler-inmemoryhebo-notification-handler-snshebo-snapshot-repository-inmemoryhebo-snapshot-repository-s3hebo-event-repository-dynamodbgist-syncmongoose-repositorymongoose-base-repositorylucentsdblucentsdb-dailyopenapi-validator-middleware
5.0.1

3 years ago

5.0.0

3 years ago

4.0.0

5 years ago

3.0.0

5 years ago

2.1.1

5 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.2.1

6 years ago

1.2.0

7 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.1.0

8 years ago