You can just set size
attribute.
If you're using one of reactive frameworks, the following will be enough:
<input size="{{ yourValue.length }}" [value]="yourValue" />
but if you're using pure js, you should set event handlers, like:
<input oninput="this.setAttribute('size', this.value.length)" />